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

xml文件中配置JDBC源遇到问题 : The reference to entity "characterEncoding" must end with the ';' delimiter

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

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

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

   url

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

正确的如下:

   url

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


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

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

 数据源配置时加上编码转换格式后出问题了_第1张图片

你可能感兴趣的:(mysql)