@MapperScan和@ComponentScan的区别
Posted dianzan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@MapperScan和@ComponentScan的区别相关的知识,希望对你有一定的参考价值。
区别
今天在撸SpringBoot的时候,突然对注解产生了混淆,@MapperScan和@ComponentScan都是扫描包,二者之间有什么区别呢?
首先,@ComponentScan是组件扫描注解,用来扫描@Controller @Service @Repository这类,主要就是定义扫描的路径从中找出标志了需要装配的类到Spring容器中
其次,@MapperScan 是扫描mapper类的注解,就不用在每个mapper类上加@MapperScan了
这两个注解是可以同时使用的。
https://blog.csdn.net/m0_37597572/article/details/82625631
@ComponentScan说明
https://blog.csdn.net/Lamb_IT/article/details/80918704
@MapperScan说明
https://blog.csdn.net/nba_linshuhao/article/details/82783454
以上是关于@MapperScan和@ComponentScan的区别的主要内容,如果未能解决你的问题,请参考以下文章