@MapperScan中annotationClass 属性作用
时间: 2023-10-26 15:00:20 浏览: 129
@PostConstruct注解用来获取springbean对象.txt
@MapperScan注解中的annotationClass属性用于指定要扫描的Mapper接口上的注解类型。这个属性默认为@Mapper注解,如果我们的Mapper接口上的注解不是@Mapper,那么我们就需要通过annotationClass属性来指定要扫描的注解类型。例如,如果我们的Mapper接口上的注解是@Repository,那么我们就需要在@MapperScan注解中指定annotationClass属性的值为@Repository.class,这样Spring Boot就能够正确地扫描到我们的Mapper接口并将其注册为MyBatis的Mapper接口。
阅读全文