The reference to entity "locale" must end with the ';' delimiter.

前端之家收集整理的这篇文章主要介绍了The reference to entity "locale" must end with the ';' delimiter.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
问题:
修改web.xml 文件中的拦击器中的URL后
报错The reference to entity "locale" must end with the ';' delimiter.

出错代码

项目:基于CAS的SSO单点登录,在web.xml中配置公共的拦截
<init-param>
<param-name>casServerUrlPrefix</param-name>
<param-value>http://demo.tch.com:8081/cas/login/</param-value>
</init-param>


错误原因:
login后的/< 解析为转译 <,导致 param-value 没有被解析到另一半的<,所以报错

如下内容在XML中需要进行转译
&lt; < 小于号
&gt; > 大于号
&amp; &
&apos; ' 单引号
&quot; " 双引号
解决: 去掉 / 总结: xml文件中的常见字符的转译 原文链接:https://www.f2er.com/xml/296692.html

猜你在找的XML相关文章