码迷,mamicode.com
首页 > 编程语言 > 详细

java报错:The reference to entity "characterEncoding" must end with the ';' delimite

时间:2018-05-10 23:38:56      阅读:482      评论:0      收藏:0      [点我收藏+]

标签:code   table   coding   cee   value   val   配置文件   特殊符号   中间   

解决方法:

在web.xml增加如下配置:
<filter> 
<filter-name>encodingFilter</filter-name> 
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> 
<init-param> 
<param-name>encoding</param-name> 
<param-value>UTF8</param-value> 
</init-param> 
<init-param> 
<param-name>forceEncoding</param-name> 
<param-value>true</param-value> 
</init-param> 
</filter>

 

然后再改一下数据库连接
jdbc:mysql://localhost/mydb?useUnicode=true&characterEncoding=utf-8

然后在MYSQL软件中更改对应字段为UTF-8编码;

 

纠错结果:

在配置一个访问数据库的Url时,第一次设置的内容如下:

jdbc:mysql://localhost:3306/photo?useUnicode=true&characterEncoding=UTF-8,注意中间那个“&”,在xml中这个是读不出的,正确写法将“&”转义“&amp;”:

jdbc:mysql://localhost:3306/photo?useUnicode=true&amp;characterEncoding=UTF-8

分析:

有时候在使用xml作为配置文件的时候,应该要使用xml的编码规则来进行适当的设置。

下面给出xml中一些特殊符号的编码转换

 &lt;  <  小于号
 &gt;  >  大于号
 &amp;  &  and字符
 &apos;  ‘  单引号
 &quot;  "  双引号

java报错:The reference to entity "characterEncoding" must end with the ';' delimite

标签:code   table   coding   cee   value   val   配置文件   特殊符号   中间   

原文地址:https://www.cnblogs.com/yswyzh/p/9021761.html

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