
mybatis-plus
小诺大人
不够优秀,遇见也不配拥有
展开
-
mybatis plus实现queryWrapper 进行动态排除查询Column列,动态进行groupBy分组
mybatis plus实现queryWrapper 进行动态排除查询Column列,动态进行groupBy分组,default Children select(Predicate predicate),.groupBy(req.getIsCountryGroup(), OverviewReportModel::getCountry);,queryWrapper.select(item -> !noSelected.contains(item.getColumn()));...原创 2022-07-27 15:21:22 · 4897 阅读 · 0 评论 -
MyBatis Plus 在复杂查询条件Where中加括号,多个查询条件在括号内
MyBatis Plus 在复杂查询条件Where中加括号,多个查询条件在括号内使用add()方法官方给出示例:and(i -> i.eq("name", "李白").ne("status", "活着"))---> sql输出结果:and (name = '李白' and status <> '活着')QueryWrapper无条件时 QueryWrapper<Demo> queryWrapper = new QueryWrapper<>();原创 2021-12-02 14:23:38 · 3653 阅读 · 2 评论 -
自定义查询SQL使用Wrapper:There is no getter for property named ‘ew‘ in ‘class com.baomidou.mybatisplus.core
报错信息使用 Wrapper 自定义SQLThere is no getter for property named ‘ew’ in 'class com.baomidou.mybatisplus.core.conditions.query.QueryWrapper org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There原创 2021-11-17 16:28:07 · 4262 阅读 · 0 评论 -
mybatis-plus插入或更新的字段有空字符串或者null,mybatis-plus添加判空
方法1在配置文件yml中添加field-strategy属性# mybatis-plus 配置mybatis-plus: global-config: db-config: # 添加非空判断 field-strategy: not_empty从源码中可看出FieldStrategy的非空策略有public enum FieldStrategy { IGNORED, NOT_NULL, NOT_EMPTY, DEFAULT;原创 2021-11-16 14:28:37 · 2710 阅读 · 0 评论