java中连接mysql时会出现中文乱码:
造成这种问题的原因代码如下:
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/itat_hibernate</property>
在配置mysql的url连接时需要指明:连接的字符串,修改如下:
jdbc:mysql://localhost:3306/itat_hibernate?characterEncoding=UTF8
java中连接mysql时会出现中文乱码:
造成这种问题的原因代码如下:
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/itat_hibernate</property>
在配置mysql的url连接时需要指明:连接的字符串,修改如下:
jdbc:mysql://localhost:3306/itat_hibernate?characterEncoding=UTF8