系统插入mysql出现乱码:
1.查看数据库编码 mysql> show variables like 'character/_set/_%';
是utf-8;
2.在spring.xml中设置字符编码跟数据库一致。
<property name="url" value="jdbc:mysql://localhost:3306/qa?userUnicode=true&characterEncoding=utf8"/>
qa是数据库名!
系统插入mysql出现乱码:
1.查看数据库编码 mysql> show variables like 'character/_set/_%';
是utf-8;
2.在spring.xml中设置字符编码跟数据库一致。
<property name="url" value="jdbc:mysql://localhost:3306/qa?userUnicode=true&characterEncoding=utf8"/>
qa是数据库名!