springboot源码学习

本文总阅读量
本文最后更新于2 分钟前,文中所描述的信息可能已发生改变。

笔记

在springboot中推荐使用构造器注入,示例:

java
@Service
public class StudentServiceImpl implements StudentService {
    //定义为final可以保持数据的不变性是推荐的做法(最佳规范),不是强制要求,不定义为final也可以。
    private final StudentMapper studentMapper;
    //推荐使用构造器注入
    @Autowired
    public StudentServiceImpl(StudentMapper studentMapper) {
        this.studentMapper = studentMapper;
    }

    @Override
    public void add(Student student) {
        studentMapper.add(student);
    }
}
springboot整合mybatis与mybatis-plus
springboot在一个子模块B中引用另一个子模块C后编译B出错
Valaxy v0.18.5 驱动 | 主题 - Yun v0.18.5
本站总访问量
本站访客数 人次
本站已运行0 天0 小时0 分0 秒后缀