文章目录
刚毕业入职,最近在学Spring Boot,照着demo敲代码的时候发现一些问题,就想记录一下,当作CSDN上的第一篇博客吧。
在学使用JdbcTemplate操作MySQL的时候,代码如下,编译不通过。
@Repository
public class UserRepositoryImpl implements UserRepository {
private final JdbcTemplate jdbcTemplate;
...
}
然后发现是jdbcTemplate没有注入,于是加上@Autowired,但是加上了还是不行,原因是@Autowired注解不能用来修饰final变量。
【Spring|Spring Boot(@Autowired可以省略的情况)】然后我再去看了下demo的代码,发现demo代码中有一个@AllArgsConstructor注解:
@Repository
@AllArgsConstructor
public class UserRepositoryImpl implements UserRepository {
private final JdbcTemplate jdbcTemplate;
...
}
@AllArgsConstructor是Lombok中的一个注解,其功能是生成一个为类中所有非static变量以及未初始化的final变量进行赋值的构造函数,生成的class文件中的代码如下:
@Repository
public class UserRepositoryImpl implements UserRepository {
private final JdbcTemplate jdbcTemplate;
...public UserRepositoryImpl(final JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
}
这个生成的构造函数没有使用@Autowired注解,但却能够成功运行。
网上搜了一下原因,按照官方文档的说法,如果一个bean有一个构造器,就可以省略@Autowired。
If a bean has one constructor, you can omit the @Autowired省略@Autowired配合Lombok,能够有效减少代码长度,可能对于初学者有点不太直观,但是习惯了之后就会觉得很舒服。
使用@AllArgsConstructor为final变量自动生成构造器的话,idea中代码会一直飘红报错,idea中安装lombok plugin插件就能够避免这种情况,能够识别自动生成的代码。
至于还有没有其他可以省略@Autowired的情况,还没发现,等发现了再补充。
推荐阅读
- =======j2ee|spring用注解实现注入的@resource,@autowired,@inject区别
- jar|springboot项目打成jar包和war包,并部署(快速打包部署)
- 数据库|效率最高的Excel数据导入---(c#调用SSIS Package将数据库数据导入到Excel文件中【附源代码下载】)...
- java人生|35K 入职华为Java开发那天,我哭了(这 5 个月做的一切都值了)
- Java毕业设计项目实战篇|Java项目:在线嘿嘿网盘系统设计和实现(java+Springboot+ssm+mysql+maven)
- 微服务|微服务系列:服务发现与注册-----Eureka(面试突击!你想了解的Eureka都在这里.持续更新中......)
- java|ApplicationListener和SpringApplicationRunListener的联系
- Spring|SpringSecurity--自定义登录页面、注销登录配置
- 性能|性能工具之 Jmeter 通过 SpringBoot 工程启动
- 代码狂魔|Spring源码分析之IOC容器初始化流程