问题:不能在数据库中插入中文,数据库中及后台代码都配置了“utf-8”,但还是出现了乱码。
解决:在连接数据库的参数中加入:useUnicode=true&characterEncoding=utf-8 。
如:jdbc:mysql://localhost:3306/usa?useUnicode=true&characterEncoding=utf-8 。
问题:不能在数据库中插入中文,数据库中及后台代码都配置了“utf-8”,但还是出现了乱码。
解决:在连接数据库的参数中加入:useUnicode=true&characterEncoding=utf-8 。
如:jdbc:mysql://localhost:3306/usa?useUnicode=true&characterEncoding=utf-8 。