美文网首页
springboot 中使用 @Autowired 注入mapp

springboot 中使用 @Autowired 注入mapp

作者: 只想做个俗人_贪财_好色 | 来源:发表于2019-07-21 16:50 被阅读0次

    最近发现springboot 中不能使用@Autowired 注入 Mapper 只能使用 @Resource 来注入
    我的解决方案是 在mapper 类上添加 @Component 注解把Mapper 注册成bean这样就能使用@Autowired 。

    另外提及一下 ,spring官方推荐 使用 setter 注入 和 构造函数注入,并不推荐使用属性注入。个人比较喜欢构造函数注入。

    相关文章

      网友评论

          本文标题:springboot 中使用 @Autowired 注入mapp

          本文链接:https://www.haomeiwen.com/subject/xhcvlctx.html