前言:
Mybatis特殊字符處理,Mybatis中xml文件特殊字符的處理,這里提供了解決辦法及實(shí)例,大家可以參考下:
一、問題描述:
查詢時(shí),需要獲取時(shí)間區(qū)間內(nèi)的數(shù)據(jù),如下:
if test="startTime != null" >
and l.CREATE_TIME >= #{startTime}
/if>
if test="endTime != null" >
and l.CREATE_TIME #{endTime}
/if>
但是,Mybatis中xml 文件中,查詢是不能使用小于號(hào)()的,因?yàn)檫@屬于開始標(biāo)簽,是特殊字符
二、解決方案
在查詢中,使用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操作返回主鍵:
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
您可能感興趣的文章:- Spring MVC+mybatis實(shí)現(xiàn)注冊(cè)登錄功能
- MyBatis接口的簡(jiǎn)單實(shí)現(xiàn)原理分析
- mybatis 插件: 打印 sql 及其執(zhí)行時(shí)間實(shí)現(xiàn)方法
- Mybatis choose when用法實(shí)例代碼
- Spring MVC+MyBatis+MySQL實(shí)現(xiàn)分頁功能實(shí)例
- mybatis如何通過接口查找對(duì)應(yīng)的mapper.xml及方法執(zhí)行詳解