最近发现springboot 中不能使用@Autowired 注入 Mapper 只能使用 @Resource 来注入
我的解决方案是 在mapper 类上添加 @Component 注解把Mapper 注册成bean这样就能使用@Autowired 。
另外提及一下 ,spring官方推荐 使用 setter 注入 和 构造函数注入,并不推荐使用属性注入。个人比较喜欢构造函数注入。
最近发现springboot 中不能使用@Autowired 注入 Mapper 只能使用 @Resource 来注入
我的解决方案是 在mapper 类上添加 @Component 注解把Mapper 注册成bean这样就能使用@Autowired 。
另外提及一下 ,spring官方推荐 使用 setter 注入 和 构造函数注入,并不推荐使用属性注入。个人比较喜欢构造函数注入。
本文标题:springboot 中使用 @Autowired 注入mapp
本文链接:https://www.haomeiwen.com/subject/xhcvlctx.html
网友评论