springboot扫描包mapper包(笔记)
1、当mapper包在启动类及其子类下 (1)、可以直接在mapper类上加上注解@Mapper,扫描当前类 (2)、可以最启动类上加上@MapperScan(“com.example.mapper”),扫描当前包下面的所有类,也支持多个包。 2、当mapper包没有在启动类及其子类下 只能使用@MapperScan(“com.example.mapper”),扫描当前包下得所有mapper
注释: @MapperScan只能扫描@Service、@Controller、@Repository、@Component
@MapperScan扫描会自动过滤掉接口、抽象类上面的注解,如下这种写法也是没有用的
共有 0 条评论