<property name="jdbcUrl">jdbc:mysql://localhost:3306/company?useUnicode=true&characterEncoding=utf-8</property>
出现插入中文乱码问题:可能是连接数据库的编码方式有问题
在连接字符串后边加上以下代码即可:
?useUnicode=true&characterEncoding=utf-8
<property name="jdbcUrl">jdbc:mysql://localhost:3306/company?useUnicode=true&characterEncoding=utf-8</property>
出现插入中文乱码问题:可能是连接数据库的编码方式有问题
在连接字符串后边加上以下代码即可:
?useUnicode=true&characterEncoding=utf-8
转载于:https://www.cnblogs.com/zhaoyanhaoBlog/p/10231521.html