MyBatis-Plus 的相关配置和拼接方法大全

spring boot 项目MyBatis-plus 配置:

application.yml中加入如下属性:

mybatis-plus:
  # 配置扫描xml
  mapper-locations:
    - classpath:mapper/*.xml
  # 实体扫描,多个package用逗号或者分号分隔
  type-aliases-package: 实体类扫描的包位置

pom配置:


    org.mybatis.spring.boot
    mybatis-spring-boot-starter
    1.1.1


    com.baomidou
    mybatis-plus
    2.1.8
public List sheetList() {
    EntityWrapper entityWrapper = new EntityWrapper<>();
    Sheet sheet = new Sheet();
    entityWrapper.setEntity(sheet);


    return  service.selectList(entityWrapper);
}

mybatis-plus可调用的方法:

查询方式 说明
setSqlSelect 设置 SELECT 查询字段
where WHERE 语句,拼接 + WHERE 条件
and AND 语句,拼接 + AND 字段=值
andNew AND 语句,拼接 + AND (字段=值)
or OR 语句,拼接 + OR 字段=值
orNew OR 语句,拼接 + OR (字段=值)
eq 等于=
allEq 基于 map 内容等于=
ne 不等于<>
gt 大于>
ge 大于等于>=
lt 小于<
le 小于等于<=
like         模糊查询 LIKE
notLike 模糊查询 NOT LIKE
in IN 查询
notIn NOT IN 查询
isNull NULL 值查询
isNotNull         IS NOT NULL
groupBy 分组 GROUP BY
having HAVING 关键词
orderBy 排序 ORDER BY
orderAsc         ASC 排序 ORDER BY
orderDesc DESC 排序 ORDER BY
exists EXISTS 条件语句
notExists         NOT EXISTS 条件语句
between BETWEEN 条件语句
notBetween NOT BETWEEN 条件语句
addFilter         自由拼接 SQL
last         拼接在最后,例如:last("LIMIT 1")

你可能感兴趣的:(MyBatis-Plus 的相关配置和拼接方法大全)