@Mapper 与 @MapperScan 的区别

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 注解。

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值