mybatis xml 설정에서 다음 에러가 발생했다.

The content of elements must consist of well-formed character data or markup.

 

등호 근처 혹은 쿼리문 바깥에 넣어준다.

 

예제 1) – 내가 선호하는 스타일

<select id="getItems" parameterType="map"  resultType="hashmap">
<![CDATA[
select data
from item
where id = #{channelInstanceId} 
    and revision < #{lastRevision}
]]>
</select>

 

예제 2) 

<select id="getItems" parameterType="map"  resultType="hashmap">
select data
from item
where id = #{channelInstanceId} 
    and revision

<![CDATA[

<

]]>

#{lastRevision}


</select>

Posted by '김용환'
,