在xml文件中配置数据库url需要带多个参数的时候IDE提示The reference to entity "characterEncoding" must end with the ';'

前端之家收集整理的这篇文章主要介绍了在xml文件中配置数据库url需要带多个参数的时候IDE提示The reference to entity "characterEncoding" must end with the ';'前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原因

xml文件中对”&”符需要转义

解决办法

把”&”改成“_&_”
以hibernate.cfg.xml文件的配置url来举例的话就是这样

<property name="hibernate.connection.url">jdbc:MysqL://localhost:3306/Test?useSSL=true&amp;characterEncoding=utf8</property>
原文链接:https://www.f2er.com/xml/295217.html

猜你在找的XML相关文章