处理大于小于号的方法:

https://www.cnblogs.com/winner-0715/p/6132755.html

第一种方法:
用转义字符把">"和"<"替换掉,就没有问题了。

<if test="startTime != null ">
AND order_date &gt;= #{startTime,jdbcType=DATE}
</if>
<if test="endTime != null ">
AND order_date &lt;= #{endTime,jdbcType=DATE}
</if>

注意下,这里的startTime,endTime都是Date类型的~

附:XML转义字符

&lt;      <    小于号   
&gt;      >    大于号   
&amp;      &    和   
&apos;      ’    单引号   
&quot;      "    双引号   

第二种方法:
因为这个是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 &gt;= #{minReportsCount}
</if>
<if test="maxReportsCount != null">
AND table_all.reportsCount &lt;= #{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文件中处理大于号小于号的方法【问题】的更多相关文章

  1. MyBatis 3在XML文件中处理大于号小于号(<>)的方法(转)

    说明:以下方式支持XML和注解的方式. 一. 用了转义字符把>和<替换掉. AND start_date <= CURRENT_DATE AND end_date >= CUR ...

  2. Mybatis在xml文件中处理大于、小于、不等于号的方法

    在mapper.xml使用大于.小于等符号会和xml语法冲突,解决冲突有两种方式. 方法一: 使用转义字符: 字符名称 字符符号 转义字符 大于号 > > 小于号 < < 与 ...

  3. maven的setting.xml文件中只配置本地仓库路径的方法

    maven的setting.xml文件中只配置本地仓库路径的方法 即:settings标签下只有一个 localRepository标签,其他全部注释掉即可 <?xml version=&quo ...

  4. mybatis 基础(二) xml文件中的其他知识点

    mybatis xml文件中一些标签的使用 此标签主要用作 配置 "别名" 如果实体类与数据库中字段名在不区分大小写的情况下相同的话, 那就不需要配置resultMap,因为mys ...

  5. 转!!mybatis在xml文件中处理大于号小于号的方法

    第一种方法: 用了转义字符把>和<替换掉,然后就没有问题了. SELECT * FROM test WHERE 1 = 1 AND start_date  <= CURRENT_DA ...

  6. Mybatis在xml文件中处理大于号小于号的方法

    第一种方法:用了转义字符把">"和"<"替换掉,然后就没有问题了. AND start_date <= CURRENT_DATE AND en ...

  7. 【转】mybatis在xml文件中处理大于号小于号的方法

    http://blog.csdn.net/zheng0518/article/details/10449549 第一种方法: 用了转义字符把>和<替换掉,然后就没有问题了. SELECT ...

  8. 在AndroidManifest.xml文件中设置Android程序的启动界面方法

    从网上搜集了一堆的Android代码,比如Android的Login程序和Android的Helloworld程序,但是却总不能正确运行一个正确的程序,郁闷了很久,终于在一次一次的测试后成功的在And ...

  9. iBATIS sql(XML)中的大于、小于、like等符号写法

    其实就是xml的特殊符号,因为它的配置就是xml,所以可以用下面这种写法转义 <          <     >          >      <>   < ...

随机推荐

  1. VUE +element el-table运用sortable 拖拽table排序,实现行排序,列排序

    Sortable.js是一款轻量级的拖放排序列表的js插件(虽然体积小,但是功能很强大) 项目需求是要求能对element中 的table进行拖拽行排序 这里用到了sorttable Sortable ...

  2. substring substr slice 区别

    1. substring(start,end)  返回指定索引区间的字串,不改变原字符串 start 必需,开始位置的索引,一个非负的整数 end  可选,结束位置的索引(不包括其本身),如果未设置, ...

  3. 【php】关于尾部去除和分号问题

    One thing to remember is, if you decide to omit the closing PHP tag, then the last line of the file ...

  4. python--MySQl单表查询

    一.  关键字的执行优先级(重点) from where group by having # 使用是要放在group by 后面而且前面必须有group by select distinct # 去重 ...

  5. Flask 系列之 构建 Swagger UI 风格的 WebAPI

    说明 操作系统:Windows 10 Python 版本:3.7x 虚拟环境管理器:virtualenv 代码编辑器:VS Code 实验 环境初始化 # 创建项目目录 mkdir helloworl ...

  6. JavaScript内建对象-String

    JavaScript中通过双引号或单引号界定一个字符串. String对象只有一个属性:length属性,得到字符串的长度. 处理字符串本身的方法 charAt(index) 返回字符串中index指 ...

  7. Spring核心技术(十一)——基于Java的容器配置(一)

    基本概念: @Bean和@Configuration Spring中新的基于Java的配置的核心就是支持@Configuration注解的类以及@Bean注解的方法. @Bean注解用来表示一个方法会 ...

  8. UVa 11987 并查集 Almost Union-Find

    原文戳这 与以往的并查集不同,这次需要一个删除操作.如果是叶子节点还好,直接修改父亲指针就好. 但是如果要是移动根节点,指向它的所有子节点也会跟着变化. 所以要增加一个永远不会被修改的虚拟根节点,这样 ...

  9. css 标题

    纯CSS制作的复古风格的大标题 .vintage{ background: #EEE url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAA ...

  10. php 注册与登录

    <body background="timg.jpg"><div class="dak"> <div class="zu ...