【已解决】The reference to entity "useSSL" must end with the ';' delimiter

【已解决】The reference to entity "useSSL" must end with the ';' delimiter


报错:
The reference to entity “useSSL” must end with the ‘;’ delimiter

解决办法:
原来:

<property name="url" value="jdbc:mysql://localhost:3306/javaweb?characterEncoding=utf8&useSSL=false"/>

改成:

<property name="url" value="jdbc:mysql://localhost:3306/javaweb?characterEncoding=UTF-8&useSSL=false&useLegacyDatetimeCode=false&serverTimezone=UTC" />

解决原理:
在xml文件中 &符号 需要转义 这个根据 HTML 的转义规则 更改就行

& -> &

适配mysql版本:

这是我换高版本的mysql后出现的问题,我目前用最新的
mysql-connector-java-8.0.16.jar可以调试成功
可以到 https://download.csdn.net/download/dreamboy_w/11172176 下载

你可能感兴趣的:(notes)