本文主要是介绍在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&characterEncoding=utf8</property>
这篇关于在xml文件中配置数据库url需要带多个参数的时候IDE提示The reference to entity characterEncoding must end with the ';'的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!