当sql配置文件中的元素select/insert/update中,需要使用大于号>和小于号<时,要使用
<![CDATA[
sql语句
]]>
来将sql语句括起来,如:
<select id="test_query" parameterType="hashmap" resultType="hashmap"> <![CDATA[ select t.f1,t.f2 from table t where t.f3 <> 1 ]]> <include refid="test_sql_common" /> </select> |