Java-Hibernate中HQL转化为SQL时的中文乱码问题
如题,有的SQL在hibernate里的HQL转为SQL时,中文出现乱码问题,如何解决?
比如select count(1) from table where column='中文';
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如题,有的SQL在hibernate里的HQL转为SQL时,中文出现乱码问题,如何解决?
比如select count(1) from table where column='中文';
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在hibernate.cfg.xml配制文件中加上如下语名即可:
<property name="hibernate.query.factory_class">
org.hibernate.hql.classic.ClassicQueryTranslatorFactory
</property>
你可以尝试一下下面的方法:
在sessionFactory的配置中加入
<property name="hibernate.query.factory_class">
org.hibernate.hql.classic.ClassicQueryTranslatorFactory
</property>
java.lang.NoClassDefFoundError: org/hibernate/cfg/HbmBinder$SecondPass
Problem with Spring 1.2.6 and Hibernate 3.1 : HbmBinder$SecondPass