当前位置 : 主页 > 网络编程 > PHP >

Mybatis:大于号、小于号的转义写法

来源:互联网 收集:自由互联 发布时间:2023-09-06
在Mybatis中,sql语句的 大于号(),小于号(),在xml文件中是特殊字符( ),所以需要做转义。 使用xml的转义字符方法:![CDATA[ 特殊字符 ]]。 示例: select id="getListCount" resultType="int" parameter


在Mybatis中,sql语句的 大于号(>),小于号(<),在xml文件中是特殊字符(< >),所以需要做转义。

使用xml的转义字符方法:<![CDATA[  特殊字符  ]]>。

示例:

<select id="getListCount" resultType="int" parameterType="java.util.HashMap">
SELECT * FROM V_gsuserbanding AS tm WHERE 1=1
<if test="UserName !=null and UserName !=''">
and UserName like "%"#{UserName}"%"
</if>
<if test="BeginTime !=null and BeginTime !=''">
and CreateTime <![CDATA[ >= ]]> #{BeginTime} -- 转义 >=
</if>
<if test="EndTime !=null and EndTime !=''">
and CreateTime <![CDATA[ <= ]]> #{EndTime} -- 转义 <=
</if>
</select>

 

上一篇:VS 如何设置程序版本号
下一篇:没有了
网友评论