SpringBoot+mybatis实现:查询一定范围内的值(可任意选择大于或小于、与或,自定义逻辑查询)
程序员文章站
2024-01-27 12:21:28
...
项目开发中需求的实现,作为记录和分享
1、先看需求:根据两个输入框的值,自定义逻辑进行查询。
(大于、小于;与或都可以选择,相当于用户可以自定义逻逻辑查询);
ps:虽然觉得然并软,但是毕竟是需求。
2、实现:
思路:将要比较得值,和比较运算符 也就是“大于”这些都作为参数,共5个参数。都传到后台;在Mapper.xml 中使用标签判断然后比较;
3、代码
controller和service中赘述;主要是接收这5个参数,
"compare_l":"dayv",//String类型。大于:dayv; 小于:xiaoyv
"compare_r":"xiaoyv",//String类型。大于:dayv; 小于:xiaoyv
"logic":"and",//String类型。与:and; 或:or
"mj_l":"30",//Float类型面积
"mj_r":"100"//Float类型面积
4、以下是mapper.xml文件中得代码
注释:
1、mj为数据库面积字段
2、<; 是 < 的转义字符;同理>;是 > 符号的转义字符。
<!-- 左侧输入框不为空,右侧输入框为空的情况-->
<if test="mj_l!=null and mj_l!= ''">
<if test="mj_r==null or mj_r== ''">
<!-- 直接对左侧输入框的值进行判断 -->
<if test="compare_l=='dayv' ">
and mj > #{mj_l,jdbcType=FLOAT}
</if>
<if test="compare_l=='xiaoyv'">
and mj < #{mj_l,jdbcType=FLOAT}
</if>
</if>
<!-- 左侧输入框不为空,右侧输入框也不为空-->
<if test="mj_r!=null and mj_r!= ''">
<!-- 如果是与-->
<if test="logic=='and'">
<if test="compare_l=='dayv' and compare_r=='dayv'">
and ((mj > #{mj_l,jdbcType=FLOAT} ) and (mj > #{mj_r,jdbcType=FLOAT}))
</if>
<if test="compare_l=='dayv' and compare_r=='xiaoyv'">
and (( mj > #{mj_l,jdbcType=FLOAT} ) and ( mj < #{mj_r,jdbcType=FLOAT}))
</if>
<if test="compare_l=='xiaoyv' and compare_r=='dayv'">
and (( mj < #{mj_l,jdbcType=FLOAT} ) and ( mj > #{mj_r,jdbcType=FLOAT}))
</if>
<if test="compare_l=='xiaoyv' and compare_r=='xiaoyv'">
and (( mj < #{mj_l,jdbcType=FLOAT} ) and ( mj < #{mj_r,jdbcType=FLOAT}))
</if>
</if>
<!-- 如果是或-->
<if test="logic=='or'">
<if test="compare_l=='dayv' and compare_r=='dayv'">
and (( mj > #{mj_l,jdbcType=FLOAT} ) or ( mj > #{mj_r,jdbcType=FLOAT}))
</if>
<if test="compare_l=='dayv' and compare_r=='xiaoyv'">
and (( mj > #{mj_l,jdbcType=FLOAT} ) or ( mj < #{mj_r,jdbcType=FLOAT}))
</if>
<if test="compare_l=='xiaoyv' and compare_r=='dayv'">
and (( mj < #{mj_l,jdbcType=FLOAT} ) or ( mj > #{mj_r,jdbcType=FLOAT}))
</if>
<if test="compare_l=='xiaoyv' and compare_r=='xiaoyv'">
and ((mj < #{mj_l,jdbcType=FLOAT} ) or ( mj < #{mj_r,jdbcType=FLOAT}))
</if>
</if>
</if>
</if>
<!-- 左侧输入框为空,右侧输入框不为空-->
<if test="mj_l==null or mj_l== ''">
<if test="mj_r!=null and mj_r!= ''">
<if test="compare_r=='dayv' ">
and mj > #{mj_r,jdbcType=FLOAT}
</if>
<if test="compare_r=='xiaoyv'">
and mj < #{mj_r,jdbcType=FLOAT}
</if>
</if>
</if>
总结:
1、Mapper.xml 文件中’<'和‘>’为特殊字符需要转义
2、其实我还有一个思路,是参数直接传 < 和 > 号 然后在mapper中用#{ }注入拼接语句,但是介 < 和 > 是特殊符号,就没尝试,但是这种方式非常的冗长,如果有大佬也希望给些建议。
下一篇: HAProxy 实现镜像队列的负载均衡