使用hibernate进行项目开发的时候,中文修改保存出现乱码问题。很多人都是百度一下,然后复制黏贴
数据连接后面那段代码,如下
<property name="connection.url">
jdbc:mysql://localhost:3306/tansinglepage
</property>
修改为:
<property name="connection.url">
jdbc:mysql://localhost:3306/tansinglepage?useUnicode=true&characterEncoding=UTF-8
</property>
但是特别要注意的是,
jdbc:mysql://localhost:3306/heshenghuo?useUnicode=true&characterEncoding=UTF-8 这个只是适用于xml文件,假如你配置成properties文件,读数据。就不行了,乱码依然会出现。
在properties文件中 amp;要去掉 写法如下:
jdbc:mysql://localhost:3306/heshenghuo?useUnicode=true&characterEncoding=UTF-8
特别主要 &
时间: 2024-10-04 07:12:25