第一種方法:
用轉義字元把">"和"<"替換掉,就沒有問題了。
<if test
="starttime != null "
>
and order_date
>
= #
if>
<
if test
="endtime != null "
>
and order_date
<
= #
if>
注意下,這裡的starttime,endtime都是date型別的~
附:xml轉義字元
<
<
小於號
>
>
大於號
&
&
和
'
』
單引號
"
"
雙引號
<if test
="starttime != null "
>
and
order_date >= #
]]>
if>
<
if test
="endtime != null "
>
and
order_date <= #
]]>
if>
mybatis在xml檔案中處理轉義字元
第一種方法 用了轉義字元把 和 替換掉,然後就沒有問題了。select from test where1 1and start date current date and end date current date 附 xml轉義字元 小於號 大於號和 單引號雙引號 第二種方法 因為這個是xml格式...
mybatis在xml檔案中處理大於號小於號的方法
背景 在mybatis對映檔案中書寫sql語句,where子句中經常會用到大於小於號,如果直接用大於小於號就會報錯 如果用小於號會報錯誤如下 org.apache.ibatis.builder.builderexception error creating documentinstance.caus...
mybatis在xml檔案中處理大於號小於號的方法
if 二,轉義,同樣可以可以和等號 一起來使用,來表示大於等於,小於等於等。例如 and authority if mybatis在xml檔案中處理大於號小於號的方法 第一種方法 用了轉義字元把 和 替換掉,然後就沒有問題了。select from test where 1 1 and start ...