ibatiS启动的异常(The content of elements must consist of well-formed character data )

配置的动态SQL语句里面带"<" ">"等符号的用 
    <![CDATA[
    ]]>
    括起来
<select id="getSysLogData" parameterType="map" resultMap="BaseResultMap">
  	<![CDATA[select * from log_qxj l1 where 1=1 
  		and l1."dataid"<>''
	  	order by l1."logid" desc
	  	limit #{end} offset #{start} ]]>
  	
  </select>
 

你可能感兴趣的:(java)