JAVA - xml文件中配置JDBC源遇到问题 : The reference to entity "characterEncoding" must end with the &

Posted sunylat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA - xml文件中配置JDBC源遇到问题 : The reference to entity "characterEncoding" must end with the &相关的知识,希望对你有一定的参考价值。

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

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> 

 把 & 换成 &amp;

 

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

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

 技术图片

参考:

https://blog.csdn.net/sinat_25306771/article/details/53921058

以上是关于JAVA - xml文件中配置JDBC源遇到问题 : The reference to entity "characterEncoding" must end with the &的主要内容,如果未能解决你的问题,请参考以下文章

Java与XML 连接池-JDBC 笔记

mybatis连接mysql(jdbc)常见问题

如何使用 Java 和 XML 配置在 Spring Security 中配置 jdbc 身份验证管理器?

利用java.util.Properties和dom4j读写.properties和.xml文件

mybatis为啥要使用dbcp

Spring MVC配置多个数据源可能遇到的坑