如何配置ibatis语句带小于号的?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何配置ibatis语句带小于号的?相关的知识,希望对你有一定的参考价值。
DOC_NO <= '#docNo#'
按如上方式去拼写SQL语句,因为出现小于号所以ibatis配置文件报错,如何解决
小于号是xml的特殊字符,需要转义。
<![CDATA[ DOC_NO <= #docNo# ]]>
IBatis的Mapper配置文件中使用大于号>和小于号<时,要使用<![CDATA[。
<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>
<select id="searchEventCountBy" resultClass="java.lang.Integer" >
select count(1) as count from BT_Event where alarmClear=0 and <!
[CDATA[alarmTime >= #fromTime#]]>
<![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>
或者:
<select id="searchEventCountBy" resultClass="java.lang.Integer" >
select count(1) as count from BT_Event where alarmClear=0 and <![CDATA[alarmTime >= #fromTime#]]>
</select >
如何在struts2+ spring+ ibatis 框架中配置log4j让控制台显示sql语句
参考技术A 这个不是在log4j里面配置的,log4j只是记录执行操作的日志,这个需要在一个xml配置文件里面配置<!-- 日志记录的SQL监控 --> <plugin interceptor="com.cmsz.framework.log.sqlmonitor.IBatis3SqlMonitorPlugin"> <property name="printSql" value="true"></property> </plugin>
这个是配置文件需要些的代码,只要这个配置好了,控制台就可以显示sql语句了
这里面的interceptor需要写一个监听类
以上是关于如何配置ibatis语句带小于号的?的主要内容,如果未能解决你的问题,请参考以下文章
java 如何获取ibatis 配置文件中 执行的 sql语句,带参数.
如何在struts2+ spring+ ibatis 框架中配置log4j让控制台显示sql语句