SpringBoot3整合MyBatisPlus
在Spring Boot 3整合MyBatis Plus,你需要做以下几个步骤:
- 在pom.xml中添加MyBatis Plus的依赖。
- 配置application.properties或application.yml文件中的数据库连接信息。
- 创建实体类(Entity)、映射器接口(Mapper)及其XML文件。
- 配置MyBatis Plus的配置类,如分页插件等。
- 启动类上添加@MapperScan注解,扫描Mapper接口。
以下是一个简单的示例:
pom.xml中添加依赖:
<dependencies>
<!-- MyBatis Plus Starter -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.x.x</version>
</dependency>
<!-- 数据库驱动,以MySQL为例 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.x.x</version>
</dependency>
</dependencies>
application.properties配置:
spring.datasource.url=jdbc:mysql://localhost:3306/your_database?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=yourpassword
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
创建实体类:
@Data
@TableName("user") // 指定数据库表名
public class User {
@TableId(type = IdType.AUTO) // 主键策略
private Long id;
private String name;
private Integer age;
private String email;
}
创建Mapper接口:
@Mapper
public interface UserMapper extends BaseMapper<User> {
// 这里可以添加自定义方法,或者使用BaseMapper提供的方法
}
配置MyBatis Plus配置类:
@Configuration
public class MyBatisPlusConfig {
@Bean
public PaginationInterceptor paginationInterceptor() {
return new PaginationInterceptor();
}
}
启动类:
@SpringBootApplication
@MapperScan("com.yourpackage.mapper") // 指定Mapper接口所在包路径
public class YourApplication {
public static void main(String[] args) {
SpringApplication.run(YourApplication.class, args);
}
}
以上代码提供了整合MyBatis Plus的基本框架,你可以根据自己的需求添加更多的配置和功能。
评论已关闭