Mybatis异常:The content of elements must consist of well-formed.......(一般出现在写分页/带大于小于号的SQL)

Mybatis异常:The content of elements must consist of well-formed.......(一般出现在写分页/带大于小于号的SQL)_第1张图片
在写mybatis的SQL/statement配置的时候,出现> <号时,就要注意了
举个栗子 :
写一个查询结果中排序3-6的SQL语句

select * from 
	(select rownum rn,t.* from "t_book" t where rownum<=6	)
		where rn>=3

然后!!!如果这么在mybatis的配置文件里写的时候会报这么一个错误

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

这个错误的整体意思大概是
当前你书写的SQL不是良好的xml
换句话说,就是我们当前输入的这条SQL产生了错误
因为编译器自动把sql语句中的小于号当成了标签,那就当然会报错了,要改成如下这样:

select * from 
	(select rownum rn,t.* from "t_book" t where <![CDATA[  rownum<=6	)	]]>
		where rn>=3

也就是 在你 <的地方 套上一个

你可能感兴趣的:(Mybatis异常:The content of elements must consist of well-formed.......(一般出现在写分页/带大于小于号的SQL))