Ibatis 中文条件查询不到数据问题

Ibatis 中文条件查询不到数据问题

更改数据库URL地址连接,强制UTF-8编码

jdbc:mysql://localhost:3306/hammer?useUnicode=true&characterEncoding=utf8

 

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

 

由于jdbc:mysql://localhost:3306/hammer?useUnicode=true&characterEncoding=utf8没有写成

jdbc:mysql://localhost:3306/hammer?useUnicode=true&characterEncoding=utf8

你可能感兴趣的:(Ibatis)