大家好,又见面了,我是你们的朋友全栈君。
1、@Mapper
作用:用在接口类上,在编译之后会生成相应的接口实现类
位置:对应的某个接口类上面
@Mapper
package com.aop8.demo.mapper;
public interface EmployeeMapper {
public Employee getEmpById(Integer id);
public void insertEmp(Employee employee);
}
如果每个接口类 都要 @Mapper 注解,是重复而无聊的工作,解决这个问题用 @MapperScan
。
2、@MapperScan
作用:扫描指定包下所有的接口类,然后所有接口在编译之后都会生成相应的实现类
位置:是在 SpringBootApplication
启动类上面添加 。
接口类
package com.aop8.demo.mapper;
public interface EmployeeMapper {
public Employee getEmpById(Integer id);
public void insertEmp(Employee employee);
}
EmployeeMapper.xml
省略…
mybatis 相关的全局配置 省略…
SpringBootApplication 启动类
@MapperScan("com.aop8.demo.mapper")
@SpringBootApplication
public class SpringBootApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootApplication.class, args);
}
}
SpringBootApplication 上添加 @MapperScan("com.aop8.demo.mapper")
注解,会扫描 com.aop8.demo.mapper
包下面所有的接口类,在编译之后都会生成相应的实现类。
2.1、@MapperScan 支持扫描多个包
@MapperScan 也支持多个包的扫描。
@MapperScan({
"com.aop8.emp.mapper","com.aop8.dep.mapper"})
@SpringBootApplication
public class SpringBootApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootApplication.class, args);
}
}
2.2、 @MapperScan 支持表达式,扫描包和其子包中的类
@SpringBootApplication
@MapperScan({
"com.aop8.*.mapper","com.baidu.*.mapper"})
public class SpringBootApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootApplication.class, args);
}
}
3、总结:
@Mapper
是对单个接口类的注解。单个操作。
@MapperScan
是对整个包下的所有的接口类的注解。是批量的操作。使用 @MapperScan
后,接口类 就不需要使用 @Mapper
注解。
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/134362.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...