【Mybatis】 Mybatis在xml文件中处理大于号小于号的方法【问题】
处理大于小于号的方法:
https://www.cnblogs.com/winner-0715/p/6132755.html
第一种方法:
用转义字符把">"和"<"替换掉,就没有问题了。
<if test="startTime != null ">
AND order_date >= #{startTime,jdbcType=DATE}
</if>
<if test="endTime != null ">
AND order_date <= #{endTime,jdbcType=DATE}
</if>
注意下,这里的startTime,endTime都是Date类型的~
附:XML转义字符
| < | < | 小于号 |
| > | > | 大于号 |
| & | & | 和 |
| ' | ’ | 单引号 |
| " | " | 双引号 |
第二种方法:
因为这个是xml格式的,所以不允许出现类似">"这样的字符,但是可以使用<![CDATA[ ]]>符号进行说明,将此类符号不进行解析
mapper文件示例代码
<if test="startTime != null ">
AND <![CDATA[ order_date >= #{startTime,jdbcType=DATE} ]]>
</if>
<if test="endTime != null ">
AND <![CDATA[ order_date <= #{endTime,jdbcType=DATE} ]]>
</if>
====================================
附带问题:
使用情况:mybatis xml中写的mapper 对接的是postgresql数据库
问题:在同一个项目中不同的mapper.xml文件中,分别出现了>= 和<=的比较运算符,但是在一个xml中需要额外处理才能使用,一个xml文件中不需要额外处理>或者<符号可以直接使用
下面附上两个xml文件代码和截图,
1.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.rollong.chinatower.server.persistence.mapper.FinanceReportMapper">
<resultMap id="financeBriefDataResultMap"
type="com.rollong.chinatower.server.api.payload.finance.FinanceBriefData">
<id property="id" column="id"/>
</resultMap>
<select id="search" resultMap="financeBriefDataResultMap">
SELECT
*
FROM
(
SELECT
( CAST ( partner.id AS VARCHAR ) || '@partner' ) AS ID,
partner.id AS partnerId,
project.id AS projectId,
construction.id AS constructionId,
NULL AS takerId,
NULL AS maintenanceId,
count(report.id) as reportsCount,
sum(report.amount) as totalAmount,
max(report.updated_at) as reportLatestUpdatedAt
FROM
"project"."project_construction_partners" AS partner
LEFT JOIN "project"."project_construction" AS construction ON partner.construction_id = construction.id
LEFT JOIN "project"."projects" AS project ON construction.project_id = project.id
LEFT JOIN "finance"."finance_reports" as report on partner.id = report.partner_id
WHERE
#{isConstruction} = TRUE
AND construction.deleted_at IS NULL
<if test="null != partnerType">
AND partner.name = '${partnerType}'
</if>
<if test="null != provinceId">
AND project.province_id = #{provinceId}
</if>
<if test="null != cityId">
AND project.city_id = #{cityId}
</if>
<if test="null != districtId">
AND project.district_id = #{districtId}
</if>
<if test="null != subCompanyId">
AND project.sub_company_id = #{subCompanyId}
</if>
<if test="null != thirdPartCompanyId">
AND partner.third_part_id = #{thirdPartCompanyId}
</if>
<if test="null != leaderEmployeeId">
AND partner.leader_employee_id = #{leaderEmployeeId}
</if>
<if test="null != workerEmployeeId">
AND exists(
select 1 from "third_part"."worker_involved_constructions" as involved
where involved.worker_id = #{workerEmployeeId} AND involved.project_partner_id = partner.id
)
</if>
<if test="null != reportStatus">
AND exists(
select 1 from "finance"."finance_reports" as r
where r.partner_id = partner.id
<choose>
<when test="'Submit' == reportStatus">
and r.approved_at is null and r.rejected_at is null and r.paid_at is null
</when>
<when test="'Approved' == reportStatus">
and r.approved_at is not null and r.rejected_at is null and r.paid_at is null
</when>
<when test="'Rejected' == reportStatus">
and r.approved_at is null and r.rejected_at is not null and r.paid_at is null
</when>
<when test="'Paid' == reportStatus">
and r.paid_at is not null
</when>
</choose>
)
</if>
<if test="null != keyword">
AND project.name like #{keyword}
</if>
GROUP BY partner.id,project.id,construction.id
UNION
SELECT
( CAST ( taker.ID AS VARCHAR ) || '@maintenance' ) AS ID,
NULL AS partnerId,
project.ID AS projectId,
NULL AS constructionId,
taker.ID AS takerId,
maintenance.ID AS maintenanceId,
count(report.id) as reportsCount,
sum(report.amount) as totalAmount,
max(report.updated_at) as reportLatestUpdatedAt
FROM
"project"."project_maintenance_takers" AS taker
LEFT JOIN "project"."project_maintenance" AS maintenance ON taker.maintenance_id = maintenance.id
LEFT JOIN "project"."projects" AS project ON maintenance.project_id = project.id
LEFT JOIN "finance"."finance_reports" as report on taker.id = report.taker_id
WHERE
#{isMaintenance} = TRUE
AND maintenance.deleted_at IS NULL
AND taker.deleted_at IS NULL
<if test="null != provinceId">
AND project.province_id = #{provinceId}
</if>
<if test="null != cityId">
AND project.city_id = #{cityId}
</if>
<if test="null != districtId">
AND project.district_id = #{districtId}
</if>
<if test="null != subCompanyId">
AND project.sub_company_id = #{subCompanyId}
</if>
<if test="null != thirdPartCompanyId">
AND taker.third_part_id = #{thirdPartCompanyId}
</if>
<if test="null != leaderEmployeeId">
AND taker.leader_employee_id = #{leaderEmployeeId}
</if>
<if test="null != workerEmployeeId">
AND exists(
select 1 from "third_part"."worker_involved_maintenance" as involved
where involved.worker_id = #{workerEmployeeId} AND involved.taker_id = taker.id
)
</if>
<if test="null != reportStatus">
AND exists(
select 1 from "finance"."finance_reports" as r
where r.taker_id = taker.id
<choose>
<when test="'Submit' == reportStatus">
and r.approved_at is null and r.rejected_at is null and r.paid_at is null
</when>
<when test="'Approved' == reportStatus">
and r.approved_at is not null and r.rejected_at is null and r.paid_at is null
</when>
<when test="'Rejected' == reportStatus">
and r.approved_at is null and r.rejected_at is not null and r.paid_at is null
</when>
<when test="'Paid' == reportStatus">
and r.paid_at is not null
</when>
</choose>
)
</if>
<if test="null != keyword">
AND project.name like #{keyword}
</if>
GROUP BY maintenance.id,project.id,taker.id
) AS table_all
WHERE TRUE
<if test="minReportsCount != null">
AND table_all.reportsCount >= #{minReportsCount}
</if>
<if test="maxReportsCount != null">
AND table_all.reportsCount <= #{maxReportsCount}
</if>
<choose>
<when test="sort == 'Latest'">
ORDER BY table_all.reportLatestUpdatedAt DESC
</when>
<when test="sort == 'AmountAsc'">
ORDER BY table_all.totalAmount ASC
</when>
<when test="sort == 'AmountDesc'">
ORDER BY table_all.totalAmount DESC
</when>
</choose>
</select>
</mapper>

2.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.rollong.chinatower.server.persistence.mapper.OrderMealTimeMapper">
<resultMap id="OrderMealResult"
type="com.rollong.chinatower.server.api.payload.canteen.OrderMealTime" autoMapping="true">
<result property="years" column="years"/>
<result property="months" column="months"/>
<result property="days" column="days"/>
<result property="counts" column="counts"/>
<result property="checkOut" column="checkOut"/>
</resultMap>
<select id="search" resultMap="OrderMealResult">
SELECT
ors.year_meal AS years,
ors.month_meal AS months,
ors.day_meal AS days,
SUM (ors.counts) AS counts,
SUM (ors.checkd_out) AS checkOut
FROM canteen.order_meal ors
WHERE TRUE
<if test="null != canteenId">
AND ors.canteen_id = #{canteenId}
</if>
<if test=" null != startY and null != startM and null != startD" >
AND <![CDATA[ (ors.year_meal *10000 + ors.month_meal *100 + ors.day_meal) >= (#{startY}*10000+#{startM}*100+#{startD}) ]]>
</if>
<if test=" null != endY and null != endM and null != endD" >
AND <![CDATA[ (ors.year_meal *10000 + ors.month_meal *100 + ors.day_meal) <= (#{endY}*10000+#{endM}*100+#{endD}) ]]>
</if>
GROUP BY ors.year_meal,ors.month_meal,ors.day_meal
</select>
</mapper>

【究竟是xml的问题/还是对接的数据库的问题/还是数据库中对于某些类型字段处理不一样】
如果有兴趣或者刚好知道,遇到过这种情况的 希望大家能给个反馈,多多交流!!
【Mybatis】 Mybatis在xml文件中处理大于号小于号的方法【问题】的更多相关文章
- MyBatis 3在XML文件中处理大于号小于号(<>)的方法(转)
说明:以下方式支持XML和注解的方式. 一. 用了转义字符把>和<替换掉. AND start_date <= CURRENT_DATE AND end_date >= CUR ...
- Mybatis在xml文件中处理大于、小于、不等于号的方法
在mapper.xml使用大于.小于等符号会和xml语法冲突,解决冲突有两种方式. 方法一: 使用转义字符: 字符名称 字符符号 转义字符 大于号 > > 小于号 < < 与 ...
- maven的setting.xml文件中只配置本地仓库路径的方法
maven的setting.xml文件中只配置本地仓库路径的方法 即:settings标签下只有一个 localRepository标签,其他全部注释掉即可 <?xml version=&quo ...
- mybatis 基础(二) xml文件中的其他知识点
mybatis xml文件中一些标签的使用 此标签主要用作 配置 "别名" 如果实体类与数据库中字段名在不区分大小写的情况下相同的话, 那就不需要配置resultMap,因为mys ...
- 转!!mybatis在xml文件中处理大于号小于号的方法
第一种方法: 用了转义字符把>和<替换掉,然后就没有问题了. SELECT * FROM test WHERE 1 = 1 AND start_date <= CURRENT_DA ...
- Mybatis在xml文件中处理大于号小于号的方法
第一种方法:用了转义字符把">"和"<"替换掉,然后就没有问题了. AND start_date <= CURRENT_DATE AND en ...
- 【转】mybatis在xml文件中处理大于号小于号的方法
http://blog.csdn.net/zheng0518/article/details/10449549 第一种方法: 用了转义字符把>和<替换掉,然后就没有问题了. SELECT ...
- 在AndroidManifest.xml文件中设置Android程序的启动界面方法
从网上搜集了一堆的Android代码,比如Android的Login程序和Android的Helloworld程序,但是却总不能正确运行一个正确的程序,郁闷了很久,终于在一次一次的测试后成功的在And ...
- iBATIS sql(XML)中的大于、小于、like等符号写法
其实就是xml的特殊符号,因为它的配置就是xml,所以可以用下面这种写法转义 < < > > <> < ...
随机推荐
- 关于JS的继承总结
最近都在巩固JS的基础知识,今天组要看的是有关继承方面的,每次看都会加深自己的理解呢 1.借助构造函数实现继承 原理:在子类中改变父类this的指向 function Parent1() { this ...
- springboot 修炼之路
网上无意中发现一份关于springboot的教程说明,说的很详细,大家可以参考.具体地址:http://www.spring4all.com/article/246
- 蓝牙学习 (6) - Play with TI sensorTag (1)
硬件 cc2650 SensorTag Connect with App 在手机上安装Ti提供的sensorTag App即可和sensorTag 建立连接. 如下手机截图,
- 【支付宝支付】扫码付和app支付,回调验证签名失败问题
在检查了参数排序,编码解码,文件编码等问题后,发现还是签名失败,最后找出原因: 扫码付和app支付采用的支付宝公钥不一样 Pid和公钥管理里面: 开放平台密钥界面和开放平台应用界面的密钥应该一 ...
- (转)iOS 常用宏定义
#ifndef MacroDefinition_h #define MacroDefinition_h //-------------------获取设备大小------------------- ...
- Educational Codeforces Round 32:E. Maximum Subsequence(Meet-in-the-middle)
题目链接:E. Maximum Subsequence 用了一个Meet-in-the-middle的技巧,还是第一次用到这个技巧,其实这个技巧和二分很像,主要是在dfs中,如果数量减小一半可以节约很 ...
- python基础学习笔记——文件操作
文件操作 初始文件操作 使用Python来读写文件是非常简单的操作,我们使用open()函数来打开一个文件,获取到文件句柄,然后通过文件句柄就可以进行各种各样的操作了 根据打开方式的不同能够执行的操作 ...
- cf950f Curfew
神贪心--写了一个晚上加一个早上. 先考虑只有一个宿管的情况. 首先,如果这个宿舍人多了,多余的人就跑到下一个宿舍.(如果这是最后一个宿舍的话,多的就躺床底下) 如果这个宿舍人少了,但是能从别的宿舍调 ...
- performSelectorOnMainThread
在多线程操作中,有一个著名的错误,叫做"Tried to obtain the web lock from a thread other than the main thread or th ...
- 给定一颗二叉搜索树,请找出其中的第k大的结点。例如, 5 / \ 3 7 /\ /\ 2 4 6 8 中,按结点数值大小顺序第三个结点的值为4。
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x ...