@MapperScan注解作用
时间: 2023-10-26 15:03:44 浏览: 95
spring boot 整合mybatis,基于@Select注解方式
4星 · 用户满意度95%
`@MapperScan`注解是MyBatis框架提供的注解,它的作用是扫描指定包下的所有Mapper接口,并将它们注册到Spring容器中。这样,在使用`@Autowired`注解注入Mapper对象时,就可以直接通过接口进行注入,无需手动编写Mapper实现类。
例如,在SpringBoot项目中使用MyBatis框架时,可以在启动类上添加`@MapperScan`注解,指定Mapper接口所在的包,示例如下:
```java
@SpringBootApplication
@MapperScan("com.example.demo.mapper")
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
```
这样,在`com.example.demo.mapper`包下的所有Mapper接口都会被扫描并注册到Spring容器中。之后,就可以在需要使用Mapper对象的地方使用`@Autowired`注解直接注入Mapper对象,例如:
```java
@Service
public class UserService {
@Autowired
private UserMapper userMapper;
// ...
}
```
通过以上方式,可以简化MyBatis的配置和使用,提高项目开发效率。
阅读全文