MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。
1、 添加依赖
mysql mysql-connector-java com.alibaba druid-spring-boot-starter 1.2.6 com.baomidou mybatis-plus-boot-starter 3.5.5 org.mybatis mybatis-spring 3.0.3
注意: SpringBoot 3.0 需要 mybatis-spring 3.0.X 版本,否则会报如下错误:
Invalid value type for attribute 'factoryBeanObjectType'‘': java.lang.String
2、配置数据源
# druid 数据源配置 spring.datasource.url=jdbc:mysql://localhost:3306/your_db?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&useSSL=false&serverTimezone=Asia/Shanghai spring.datasource.username=root spring.datasource.password=password spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.type=com.alibaba.druid.pool.DruidDataSource # 初始化大小,最小,最大 spring.datasource.druid.initial-size=5 spring.datasource.druid.min-idle=5 spring.datasource.druid.maxActive=20 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 spring.datasource.druid.timeBetweenEvictionRunsMillis=60000 # 配置一个连接在池中最小生存的时间,单位是毫秒 spring.datasource.druid.minEvictableIdleTimeMillis=300000 spring.datasource.druid.validationQuery=SELECT 1 spring.datasource.druid.testWhileIdle=true spring.datasource.druid.testOnBorrow=false spring.datasource.druid.testOnReturn=false spring.datasource.druid.stat-view-servlet.allow=true spring.datasource.druid.web-stat-filter.enabled=true spring.datasource.druid.web-stat-filter.url-pattern=/druid/* spring.datasource.druid.filters=stat,wall,slf4j spring.datasource.druid.connectionProperties=druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000 # --- mybatis-plus start mybatis-plus.mapper-locations=classpath:/org/shi9/module/**/xml/*Mapper.xml # 关闭MP3.0自带的banner mybatis-plus.global-config.banner=false # 主键类型 0:"数据库ID自增",1:"该类型为未设置主键类型", 2:"用户输入ID",3:"全局唯一ID (数字类型唯一ID)", 4:"全局唯一ID UUID",5:"字符串全局唯一ID (idWorker 的字符串表示)"; mybatis-plus.global-config.db-config.id-type=ASSIGN_ID # 返回类型为Map,显示null对应的字段 mybatis-plus.configuration.call-setters-on-nulls=true # 这个配置会将执行的sql打印出来,在开发或测试的时候可以用 mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl # --- mybatis-plus end
3、创建实体类和 Mapper
创建你的实体类和对应的 Mapper 接口。MyBatis Plus 会自动扫描这些类并为你生成相应的 Mapper 和 SQL 语句。你也可以使用 MyBatis Plus 的 CRUD 操作来简化开发。
这里以SysLog为例
SysLogMapper.xml
SysLogMapper.java
@Mapper public interface SysLogMapper extends BaseMapper{ }
4、编写 Service 类
public interface ISysLogService extends IService{ } @Service public class SysLogServiceImpl extends ServiceImpl implements ISysLogService { }
5、编写测试类
@Slf4j @SpringBootTest public class SysLogServiceTest { @Autowired private ISysLogService sysLogService; @Test public void findTotal(){ Long total = sysLogService.count(); System.out.println(total); } }
以下是使用 MyBatis Plus 进行查询的示例:
使用 selectById 方法查询单个结果:
User user = userMapper.selectById(1L);
使用 selectList 方法查询多条记录:
Listusers = userMapper.selectList(null);
可以使用 QueryWrapper 对查询条件进行组装:
QueryWrapperqueryWrapper = new QueryWrapper<>(); queryWrapper.eq("name", "John").lt("age", 30); List userList = userMapper.selectList(queryWrapper);
使用 Page 类进行分页查询:
Pagepage = new Page<>(1, 10); // 第1页,每页显示10条记录 QueryWrapper queryWrapper = new QueryWrapper<>(); queryWrapper.eq("name", "John"); page.setFilter(queryWrapper); Page result = userMapper.selectPage(page, null);
使用 like 方法进行模糊查询:
QueryWrapperqueryWrapper = new QueryWrapper<>(); queryWrapper.like("name", "Jo"); List userList = userMapper.selectList(queryWrapper);
使用 orderBy 方法进行排序查询:
QueryWrapperqueryWrapper = new QueryWrapper<>(); queryWrapper.orderByDesc("age"); List userList = userMapper.selectList(queryWrapper);
使用 groupBy 和 sum、count 等方法进行聚合查询:
QueryWrapperqueryWrapper = new QueryWrapper<>(); queryWrapper.groupBy("age"); Long totalCount = userMapper.selectSum(queryWrapper, "age");
使用 @Select 注解自定义 SQL 语句:
@Select("SELECT * FROM user WHERE age > #{age}") ListselectUsersByAge(@Param("age") Integer age);
这些示例只是 MyBatis Plus 提供的一些常见查询方法的冰山一角。MyBatis Plus 还提供了很多其他功能和扩展,可以根据需要进行配置和使用。同时,MyBatis Plus 还支持与其他组件的集成,例如分页插件、乐观锁插件等,可以帮助你更加高效地进行数据库操作。
MyBatis Plus 支持分页功能,可以通过配置分页插件来实现。分页插件可以帮助我们自动处理分页相关的 SQL 语句,简化分页逻辑。以下是使用分页插件的步骤:
1、配置分页插件
@Bean public MybatisPlusInterceptor mybatisPlusInterceptor() { MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); // 配置分页插件 interceptor.addInnerInterceptor(new PaginationInnerInterceptor()); // 增加@Version乐观锁支持 interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor()); return interceptor; }
2. 使用分页插件
在 Mapper 接口或 XML 映射文件中使用分页插件提供的查询方法进行分页查询。例如:
@Select("SELECT * FROM user WHERE 1=1") PageselectUserPage(Page page);
在查询方法上使用 Page 参数,MyBatis Plus 会自动处理分页相关的 SQL 语句,返回包含分页信息的 Page 对象。你可以根据需要配置查询条件、排序规则等。
3. 处理分页结果
根据返回的 Page 对象,你可以获取当前页的数据、总记录数、总页数等信息,进行相应的业务处理。例如:
Pagepage = userMapper.selectUserPage(new Page<>(1, 10)); // 第1页,每页显示10条记录 List userList = page.getRecords(); // 当前页的数据列表 int totalCount = page.getTotal(); // 总记录数 int totalPage = page.getPages(); // 总页数
通过这些步骤,你可以在 MyBatis Plus 中配置和使用分页插件,简化分页逻辑,提高开发效率。
上一篇:GO 的那些 IDE