美文网首页
01: IntelliJ Idea解决Could not aut

01: IntelliJ Idea解决Could not aut

作者: lww文 | 来源:发表于2019-10-28 15:27 被阅读0次

    1)在注解上加上:

    @Autowired(required = false)

    1

    (2)使用 @Resource 替换 @Autowired

    (3)在 MyBatis 接口上加上 @Repository 注解

    (4)使用 Lombok,@RequireArgsContructor

    (5)降低 Autowired 检测的级别,将 Severity 的级别由之前的 error 改成 warning 或其它可以忽略的级别。

    (6)安装 MyBatis 插件

    (7)构造器注入

    我的解决方式;

    在启动类上加上

    @MapperScan("com.xuecheng.manage_course")

    原文链接:https://blog.csdn.net/qq_40147863/article/details/86103857

    相关文章

      网友评论

          本文标题:01: IntelliJ Idea解决Could not aut

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