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

前端之家收集整理的这篇文章主要介绍了The reference to entity "characterEncoding" must end with the ';' delimiter.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在实现Java数据池时,进行配置数据源时出现了该报错信息。报错信息出现在 context.xml 中,原语句是:

<Context>

<Resource name="jdbc/onlinefriend"

auth="Container"

type="javax.sql.DataSource"

driverClassName="com.MysqL.jdbc.Driver"

url="jdbc:MysqL://127.0.0.1:3306/onlinefriend?useUnicode=true&characterEncoding=utf-8"

username="root"

password="root"

maxActive="100"

maxIdle="30"

maxWait="10000" />

</Context>


这是由于xml的编码问题导致,小小的修改后问题解决

<Context>

<Resource name="jdbc/onlinefriend"

auth="Container"

type="javax.sql.DataSource"

driverClassName="com.MysqL.jdbc.Driver"

url="jdbc:MysqL://127.0.0.1:3306/onlinefriend?useUnicode=true&amp;characterEncoding=utf-8"

username="root"

password="root"

maxActive="100"

maxIdle="30"

maxWait="10000" />

</Context>


附:在xml文件中有以下几类字符要进行转义替换:

&lt; < 小于
&gt; > 大于
&amp; &
&apos; ' 单引号
&quot; " 双引号
原文链接:https://www.f2er.com/xml/296088.html

猜你在找的XML相关文章