IBatis的Mapper配置文件中使用大于号好小于号 :>和<

http://www.blogjava.net/george-tech/archive/2010/04/26/319372.html

http://blog.sina.com.cn/s/blog_4550f3ca01010bsl.html

当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>


你可能感兴趣的:(sql,ibatis,HashMap,table,query,include)