码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-10-24 00:05:56      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   ar   strong   sp   文件   数据   div   

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

数据源配置时加上编码转换格式后出问题了:

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

这个错误就是 context.xml中设置数据源链接URL的问题   

<context-param>

    <param-name>url</param-name>

    <param-value>jdbc:mysql://localhost:3306/bookstore?useUnicode=true&characterEncoding=UTF-8</param-value>

</context-param>

正确的如下:

<context-param>

    <param-name>url</param-name>

    <param-value>jdbc:mysql://localhost:3306/bookstore?useUnicode=true&amp;characterEncoding=UTF-8</param-value>

</context-param>

这大概是由xml文件中的编码规则决定要这么变换。

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

 

 

&lt;

 

<

 

小于号

 

&gt;

 

>

 

大于号

 

&amp;

 

&

 

 

&apos;

 

 

单引号

 

&quot;

 

"

 

双引号

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

标签:style   color   os   ar   strong   sp   文件   数据   div   

原文地址:http://www.cnblogs.com/jamesbeans/p/4047115.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!