处理大于小于号的方法:

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. 51nod 1265 四点共面——计算几何

    题目链接:http://www.51nod.com/Challenge/Problem.html#!#problemId=1265 以其中某一点向其它三点连向量,若四点共面,这三个向量定义的平行六面体 ...

  2. C#图形学习笔记

    绘图常用控件.类和结构 颜色 使用System.Drawing.Color结构表示 设置颜色的方法 调用静态函数:Color.FromArgb() public static Color FromAr ...

  3. nginx 无法加载css/js图片等文件 404 not fund

    刚配置Nginx反向代理,Nginx可能会出现无法加载css.js或者图片等文件,这里需要在配置文件*.conf里面加上如下配置项. location ~ .*\.(js|css|png|jpg)$ ...

  4. 三、Pandas速查手册中文版

    本文翻译自文章:Pandas Cheat Sheet - Python for Data Science,同时添加了部分注解. 对于数据科学家,无论是数据分析还是数据挖掘来说,Pandas是一个非常重 ...

  5. shell 几中专用修饰符 :- :+ := ${variable:offset:length}

    1.${variable:-word} ${variable:-word} 如果variable已经被设置了,且不为空,则代入它的值,否则代入word; $ fruit=peach $ echo ${ ...

  6. mysql条件查询and or使用实例及优先级介绍

    mysql and与or介绍 AND 和 OR 可在 WHERE 子语句中把两个或多个条件结合起来. 使用OR关键字时: 只要符合这几个查询条件的其中一个条件,这样的记录就会被查询出来. 如果不符合这 ...

  7. 【JavaScript 1—基础知识点】:宏观概述

    导读:JavaScript是一门新的(也可以说是旧的或者半新语言),里面有很多的知识点都能和已有的知识产生共鸣.但是,虽然简单,相同点也有很多,也有不同点.我脑袋也不好使,所以对于我来说,还是有必要再 ...

  8. BZOJ 2286 [Sdoi2011]消耗战 ——虚树

    虚树第一题. 大概就是建一颗只与询问有关的更小的新树,然后在虚树上DP #include <map> #include <ctime> #include <cmath&g ...

  9. mybatis学习(三)——接口式编程

    对于上一节中的查询我们还可以通过接口的方式进行编程,开发环境和上一节一样 1.全局配置文件mybatis_config.xml(和上一节一样) <?xml version="1.0&q ...

  10. SHoj A序列

    A序列 发布时间: 2017年7月9日 18:17   最后更新: 2017年7月9日 21:05   时间限制: 1000ms   内存限制: 128M 描述 如果一个序列有奇数个正整数组成,不妨令 ...