1.什么是MyBatis-Plus
MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 mybatis plus 官网 建议安装 MybatisX 插件
2.整合MyBatis-Plus
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.1</version>
</dependency>
自动配置 ● MybatisPlusAutoConfiguration 配置类,MybatisPlusProperties 配置项绑定。mybatis-plus:xxx 就是对mybatis-plus的定制 ● SqlSessionFactory 自动配置好。底层是容器中默认的数据源 ● mapperLocations 自动配置好的。有默认值。classpath*:/mapper/**/*.xml;任意包的类路径下的所有mapper文件夹下任意路径下的所有xml都是sql映射文件。 建议以后sql映射文件,放在 mapper下 ● 容器中也自动配置好了 SqlSessionTemplate ● @Mapper 标注的接口也会被自动扫描;建议直接 @MapperScan(“com.atguigu.admin.mapper”) 批量扫描就行
优点: ● 只需要我们的Mapper继承 BaseMapper 就可以拥有crud能力
Mybatis-plus总结
mybatis - plus 官网 https://baomidou.com/
1、简单的查询
- 1、现在mapper接口上继承BaseMapper
@Mapper
public interface EmployeeMapper extends BaseMapper<Employee> {
}
public interface EmployeeService extends IService<Employee> {
}
- 3、service实现类继承ServiceImpl 实现 EmployeeService
@Service
public class EmployeeServiceImpl
extends ServiceImpl<EmployeeMapper,Employee>
implements EmployeeService{
}
- 4、LambdaQueryWrapper 和QueryWrapper的区别
QueryWrapper 的列名匹配使用的是 “数据库中的字段名(一般是下划线规则)” LambdaQueryWrapper 的列名匹配使用的是“Lambda的语法,偏向于对象”
LambdaQueryWrapper<Employee> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(Employee::getUsername,employee.getUsername());
Employee emp = employeeService.getOne(queryWrapper);
2、分页查询
1、使用Page对象一定要添加配置类
@Configuration
public class MybatisPlusConfig {
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor(){
MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor();
mybatisPlusInterceptor.addInnerInterceptor(new PaginationInnerInterceptor());
return mybatisPlusInterceptor;
}
}
2、分页构造器
Page<Employee> pageInfo = new Page<>(page,pageSize);
3、添加构造器
@param1:是否有字符串传入,当有的时候再调用函数
@param2:数据库对应的字段
@param3:传入的数据
queryWrapper.like(boolean condition, R column, Object val)
LambdaQueryWrapper<Employee> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.like(StringUtils.hasText(name),Employee::getName,name)
.orderByDesc(Employee::getUpdateTime);
4、执行
继承IService接口并且实现自带page方法返回一个page对象
employeeService.page(pageInfo,queryWrapper);
page对象封装了一些属性
3、查询单条数据
根据id查询
LambdaQueryWrapper<Employee> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(Employee::getId,id);
Employee employee = employeeService.getOne(queryWrapper);
return R.success(employee);
也可以
employeeService.getById(id);
反正mybatis-plus封装了很多方法,想用啥就用啥!
4、自动填充
官网案例:
@Slf4j
@Component
public class MyMetaObjectHandler implements MetaObjectHandler {
@Override
public void insertFill(MetaObject metaObject) {
log.info("start insert fill ....");
this.strictInsertFill(metaObject, "createTime", LocalDateTime.class, LocalDateTime.now());
this.strictInsertFill(metaObject, "createTime", () -> LocalDateTime.now(), LocalDateTime.class);
this.fillStrategy(metaObject, "createTime", LocalDateTime.now());
}
@Override
public void updateFill(MetaObject metaObject) {
log.info("start update fill ....");
this.strictUpdateFill(metaObject, "updateTime", LocalDateTime.class, LocalDateTime.now());
this.strictUpdateFill(metaObject, "updateTime", () -> LocalDateTime.now(), LocalDateTime.class);
this.fillStrategy(metaObject, "updateTime", LocalDateTime.now());
}
}
- 注解填充字段
@TableField(.. fill = FieldFill.INSERT) 生成器策略部分也可以配置!
注意事项:
- 填充原理是直接给
entity 的属性设置值!!! - 注解则是指定该属性在对应情况下必有值,如果无值则入库会是
null MetaObjectHandler 提供的默认方法的策略均为:如果属性有值则不覆盖,如果填充值为null 则不填充- 字段必须声明
TableField 注解,属性fill 选择对应策略,该声明告知Mybatis-Plus 需要预留注入SQL 字段 - 填充处理器
MyMetaObjectHandler 在 Spring Boot 中需要声明@Component 或@Bean 注入 - 要想根据注解
FieldFill.xxx 和字段名 以及字段类型 来区分必须使用父类的strictInsertFill 或者strictUpdateFill 方法 - 不需要根据任何来区分可以使用父类的
fillStrategy 方法 - update(T t,Wrapper updateWrapper)时t不能为空,否则自动填充失效
@TableField(fill = FieldFill.INSERT)
private LocalDateTime createTime;
@TableField(fill = FieldFill.INSERT_UPDATE)
private LocalDateTime updateTime;
@TableField(fill = FieldFill.INSERT)
private Long createUser;
@TableField(fill = FieldFill.INSERT_UPDATE)
private Long updateUser;
-
自定义实现类 MyMetaObjectHandler package com.sky.reggie.common;
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
import lombok.extern.slf4j.Slf4j;
import org.apache.ibatis.reflection.MetaObject;
import org.springframework.context.annotation.Configuration;
import java.time.LocalDateTime;
@Configuration
@Slf4j
public class MyMetaObjectHandler implements MetaObjectHandler {
@Override
public void insertFill(MetaObject metaObject) {
log.info("=======自动填充insert=======");
log.info(metaObject.toString());
this.strictInsertFill(metaObject,"createTime", LocalDateTime.class,LocalDateTime.now());
this.strictInsertFill(metaObject,"updateTime", LocalDateTime.class,LocalDateTime.now());
this.strictInsertFill(metaObject,"createUser", Long.class,BaseContext.getCurrentId());
this.strictInsertFill(metaObject,"updateUser", Long.class,BaseContext.getCurrentId());
}
@Override
public void updateFill(MetaObject metaObject) {
log.info("=======自动填充update=======");
long id = Thread.currentThread().getId();
log.info("当前线程的id:{}",id);
metaObject.setValue("updateTime",LocalDateTime.now());
metaObject.setValue("updateUser",BaseContext.getCurrentId());
log.info(metaObject.toString());
}
}
5、
|