@Reponsitory、@Mapper、@MapperScan
@Reponsitory
@Reponsitory使用后,在启动类上需要添加@MapperScan("xxx.xxx.xxx.mapper")注解
@Mapper
@Mapper注解使用后相当于@Reponsitory加@MapperScan注解,会自动进行配置加载
@MapperScan
作用:指定要变成实现类的接口所在的包,然后包下面的所有接口在编译之后都会生成相应的实现类
添加位置:是在Springboot启动类上面添加
时间:2021-08-11 21点30分