admin 发表于 2014-11-13 18:27

characterEncoding must end with the ";"

在做数据库连接的时候,
jdbc:mysql://192.168.1.180:3306/mysql?useUnicode=true&characterEncoding=utf8
报The reference to entity "characterEncoding" must end with the ';' delimiter错误。

解决方案:
把jdbc:mysql://192.168.1.180:3306/mysql?useUnicode=true&characterEncoding=utf8改成jdbc:mysql://192.168.1.180:3306/mysql?useUnicode=true&characterEncoding=utf8即可。

页: [1]
查看完整版本: characterEncoding must end with the ";"