mybatis自定义复杂条件拼接

  1. 定义条件对象
java 复制代码
/**
 * @description:
 * @author: yilv
 * @create: 2024-08-26 17:35
 **/
@Data
public class ComplexQueryDto {
    /**
     * 查询参数
     */
    private List<QueryDto> params=new ArrayList<>();

    public ComplexQueryDto addParam(QueryDto queryDto){
        this.params.add(queryDto);
        return this;
    }
}
  1. 定义查询对象
java 复制代码
/**
 * @description: 通用查询对象
 * @author: yilv
 * @create: 2024-08-26 17:42
 **/
@Data
@Accessors(chain =true)
public class QueryDto {
    /**
     * 字段名
     */
    private String filedName;

    /**
     * 比较运算符
     */
    private String opt;

    /**
     * 单值
     */
    private String filedValue;

    /**
     * 多值集合
     */
    private String[] filedValues;
    /**
     * 关系符
     */
    private String rel;
}
  1. 查询条件枚举
java 复制代码
/**
 * 操作符
 */
@Getter
public enum QueryOpt {
    //非空
    NOT_NULL("IS NOT NULL"),
    //包含")
    IN("IN"),
    //不包含")
    NOT_IN("NOT IN"),
    //存在")
    LIKE("LIKE"),
    //不存在")
    NOT_LIKE("NOT LIKE"),
    //等于")
    EQ("="),
    //不等于")
    NE("!="),
    //大于")
    GT(">"),
    //大于等于")
    GE(">="),
    //小于")
    LT("<"),
    //小于等于")
    LE("<="),
    //范围")
    BETWEEN("BETWEEN");
    private final String seg;

    public String getSeg() {
        return seg;
    }

    QueryOpt(String seg) {
        this.seg = seg;
    }
}
  1. 查询关系枚举
java 复制代码
/**
 * 关联运算符
 */
@Getter
public enum QueryRel {
    //与")
    AND("AND"),
    //或")
    OR("OR"),
    //非")
    NOT("NOT");
    private final String seg;

    public String getSeg() {
        return seg;
    }

    QueryRel(String seg) {
        this.seg = seg;
    }
}
  1. 编写条件拼接SQL
xml 复制代码
    <sql id="complexQuery">
        <if test="params != null and params.size() != 0">
            <foreach item="param" index="index" collection="params">
                AND ${param.filedName} ${param.opt}
                <if test="param.opt == 'BETWEEN'">#{param.filedValues[0]} AND #{param.filedValues[0]}</if>
                <if test="param.opt == 'IN'||param.opt == 'NOT IN'">
                    <foreach item="filedValue" index="index" collection="param.filedValues" open="(" separator="," close=")">
                        #{filedValue}
                    </foreach>
                </if>
            </foreach>
        </if>
    </sql>


    <select id="??Query" resultMap="??">
        SELECT
        <include refid="div_Column_List"></include>
        FROM
        <include refid="table"></include>
        <include refid="complexQuery"></include>
    </select>
相关推荐
南城花随雪。10 分钟前
硬盘(HDD)与固态硬盘(SSD)详细解读
数据库
儿时可乖了11 分钟前
使用 Java 操作 SQLite 数据库
java·数据库·sqlite
懒是一种态度13 分钟前
Golang 调用 mongodb 的函数
数据库·mongodb·golang
天海华兮15 分钟前
mysql 去重 补全 取出重复 变量 函数 和存储过程
数据库·mysql
gma9991 小时前
Etcd 框架
数据库·etcd
爱吃青椒不爱吃西红柿‍️1 小时前
华为ASP与CSP是什么?
服务器·前端·数据库
Yz98762 小时前
hive的存储格式
大数据·数据库·数据仓库·hive·hadoop·数据库开发
武子康2 小时前
大数据-230 离线数仓 - ODS层的构建 Hive处理 UDF 与 SerDe 处理 与 当前总结
java·大数据·数据仓库·hive·hadoop·sql·hdfs
苏-言2 小时前
Spring IOC实战指南:从零到一的构建过程
java·数据库·spring
Ljw...2 小时前
索引(MySQL)
数据库·mysql·索引