springboot启动类扫描mapper
时间: 2023-10-14 21:27:07 浏览: 186
Mapper使用
在Spring Boot启动类上添加注解`@MapperScan("mapper的包路径")`即可实现对mapper的自动扫描和注入。例如:
```java
@SpringBootApplication
@MapperScan("com.example.mapper")
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
```
其中`"com.example.mapper"`为mapper所在的包路径。这样,在启动应用程序时,Spring Boot将自动扫描该包以及其子包中的所有mapper,并将其注入到Spring容器中。
阅读全文