luzy123456
2016-04-12 14:58
Hibernate_002中“张三”中文不能插入Student表中
http://www.cnblogs.com/codeplus/archive/2011/08/02/2125546.html
我认为楼上没有很好的解决问题 ,
在配置文件的url中这么写
< property name = "connection.url"> jdbc:mysql://127.0.0.1:3306/micro_message?useUnicode=true & characterEncoding=UTF-8</ property >
也就是说 在数据库名后面添加从?开始的东西
在hibernate.cfg.xml配置文档中加入两行
<property name="connection.useUnicode">true</property>
<property name="connection.characterEncoding">UTF-8</property>
这样在数据表中就可以显示中文了
Hibernate初探之单表映射
74810 学习 · 793 问题
相似问题