Mybatis特殊字符处理的详解
前言:
Mybatis特殊字符处理,Mybatis中xml文件特殊字符的处理,这里提供了解决办法及实例,大家可以参考下:
一、问题描述:
查询时,需要获取时间区间内的数据,如下:
<if test="startTime != null" > and l.CREATE_TIME >= #{startTime} </if> <if test="endTime != null" > and l.CREATE_TIME < #{endTime} </if>
但是,Mybatis中xml 文件中,查询是不能使用小于号(<)的,因为这属于开始标签,是特殊字符
二、解决方案
在查询中,使用CDATA包括起来,就能避免特殊字符了。这方法适用所有的特殊字符。
<![CDATA[ ]]>
示例如下:
<if test="startTime != null" > <![CDATA[ and l.CREATE_TIME >= #{startTime} ]]> </if> <if test="endTime != null" > <![CDATA[ and l.CREATE_TIME < #{endTime} ]]> </if>
MyBatis返回主键,MyBatis Insert操作返回主键:
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关推荐
TLROJE 2020-10-26
cuixingwudi 2020-06-25
liuofficial 2020-06-25
xuanlvhaoshao 2020-06-16
山水沐光 2020-06-05
xiechao000 2020-05-01
Ariye 2013-05-15
HSdiana 2020-01-17
明天你好 2020-01-11
jyj00 2020-01-11
owilson 2020-01-02
wugang0 2020-01-06
jyj00 2020-01-03
wenjs00 2019-12-20
一只懒虫 2019-11-18
mrshelly 2011-05-04
liusarazhang 2019-11-05
shijinling0 2019-11-04