xml解析报The content of elements must consist of well-formed character data or markup几个需要注意的点

项目为了上线之后的数据库无缝切换,会在项目启动时优先自动解析sql_update.xml,取出本次需要更新的数据库语句,之前写了个比较复杂的sql,在xml解析时爆炸了The content of elements must consist of well-formed character data or markup,翻来覆去看了sql语句也在navicat上实际跑过,并没有发现错误,最后发现违反了xml标签,因为sql语句中包含了不等于‘<>’,特殊符号下次请转义,附转义表以示惩戒:

&(逻辑与)  &        
<(小于)    <        
>(大于)    >        
"(双引号)  "      
 '(单引号)  '

你可能感兴趣的:(web)