`@MapperScan` 是 MyBatis-Spring-Boot-Starter 提供的注解,用于自动扫描并注册所有标注了 `@Mapper` 注解的接口。
在使用 `@MapperScan` 注解之前,需要确认以下几点:
1. 依赖项:Spring Boot 中必须包含 `mybatis-spring-boot-starter` 依赖;
2. 包扫描路径:必须指定要扫描的 Mapper 接口所在的包路径;
3. Mapper 接口:Mapper 接口必须使用 `@Mapper` 注解进行标注。
下面是一个使用 `@MapperScan` 和 `@Mapper` 注解的例子:
```java
import org.apache.ibatis.annotations.Mapper;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@MapperScan("com.example.dao")
public class MybatisConfig {
}
```
在这个例子中,我们创建了一个名为 `MybatisConfig` 的配置类,并在其类上添加了 `@MapperScan` 注解。该注解指定要扫描的 Mapper 接口所在的包路径为 `com.example.dao`,表示所有在这个包路径下的接口都将被自动注册为 MyBatis 的 Mapper 接口。
此外,我们还在 `com.example.dao` 包下定义了一个名为 `UserDao` 的接口,该接口使用了 `@Mapper` 注解进行标注。这样,在应用程序启动时,`UserDao` 接口会被 MyBatis 自动注册,并可以在其他组件中使用 `@Autowired` 注解进行注入。
- 环境配置
- window怎么配置java环境变量?
- Java基础语法
- Java中的数据类型
- Java中的JSONObject
- Java高级特性
- Maven
- jib-maven-plugin
- 什么是Spring Boot 的 parent pom?
- maven中各个生命周期的含义
- Spring Boot
- maven与spring boot 的关系
- 配置文件
- application-properties配置文件
- Spring Boot 的启动
- spring boot项目如何启动?
- 列举一下Spring Boot的启动过程
- SpringApplication.run方法
- Spring Boot 启动时有哪些接口?
- CommandLineRunner
- Spring Boot 的常用注解
- 系统注解
- 表格:系统注解
- @Override
- @Deprecated
- @SuppressWarnnings
- 使用在类名上的注解
- 表格:使用在类名上的注解
- @RestController
- @Controller
- @Service
- @Repository
- @Component
- @Configuration
- @Resource
- @Autowired
- @RequestMapping
- @PostMapping
- @GetMapping
- @Transactional
- @Qualifier
- 使用在方法上的注解
- 表格:使用在方法上的注解
- @RequestBody
- @PathVariable
- @Bean
- @ResponseBody
- @PreAuthorize
- 其他常用注解
- 表格:其他常用注解
- @EnableAutoConfiguration
- @SpringBootApplication
- @EnableScheduling
- @EnableAsync
- @ComponentScan
- @Aspec
- @ControllerAdvice
- @ExceptionHandler
- @Value
- @ConfigurationProperties
- @EnableConfigurationProperties
- @MapperScan
- Validator验证的常用注解
- spring IoC容器
- Spring IoC容器依赖注入实现方式
- MyBatis
- paginationInterceptor
- @TableName
- @TableId
- @Param
- UrlBasedCorsConfigurationSource
- Lombok
- @Data
- @Slf4j
- @EqualsAndHashCode
- @Accessors
- 支付系统
- 1. 初始化mysql数据库流程
- 2. 初始化redis数据库的流程
- 3. 初始化rabbitmq服务