springBoot 中关于dao层的三个注解 @Repository @Mapper @MapperScan @Component 的区别和理解
原文链接: https://blog.csdn.net/u013158317/article/details/104006164 我提取的精华: 总结 @Mapper 一定要有,否则 Mybatis 找不到 mapper。 @Repository 可有可无,可以消去依赖注入的报错信息。 @MapperScan 可以替代 @Mapper。 @Component 和 @Repository 效果都是一…