码迷,mamicode.com
首页 > Web开发 > 详细

hibernate学习手记(1)

时间:2017-05-10 09:48:58      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:文章   src   timezone   figure   rds   new   unknown   www   连接字符串   

 

1. java.sql.SQLException: The server time zone value ‘?й???????‘ is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configu 

出现该问题,是因为时区没有指定,需要在连接字符串上加上 serverTimezone=UTC

最终的链接语句是 jdbc:mysql:///demo-hibernate?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC

 

2. org.hibernate.MappingException: Unknown entity: DBModel.Students 

出现该问题,有好几个原因,有些是配置文件的引用问题,如果说我们在cfg.xml中点击hbm.xml能跳转到相应的文件,说明引用没问题。

我出现这个问题是应为hibernate的版本问题,类库用的高版本,代码里面还是用的旧的写法

我一开始是这么写的

 ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder().applySettings(config.getProperties()).build();

后来看到这篇文章 http://www.imooc.com/wenda/detail/339079 改成了

ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder().applySettings(config.getProperties()).configure().build();

问题就没了

 

3.org.hibernate.boot.registry.classloading.spi.ClassLoadingException: Unable to load class [*.hbm.xml]

这个错误是因为 cfg.xml文件中<mapping  />的配置问题,检查一下是不是有单词拼写错误

 

4.org.hibernate.boot.MappingNotFoundException: Mapping (RESOURCE) not found : *.hbm.xml : origin(*.hbm.xml)

这个问题比较恶心,原来我配置原件都是放在src下面的 后来看了这篇文章  http://stackoverflow.com/questions/7127608/org-hibernate-mappingnotfoundexception-resource-hbm-xml-not-found 有所感悟,我看了下编译后的文件(traget文件夹下)确实没有hibernate的配置文件,后来加了一个 resources 文件夹,把配置都放到该文件下,再在build path添加一下就好了

 

hibernate学习手记(1)

标签:文章   src   timezone   figure   rds   new   unknown   www   连接字符串   

原文地址:http://www.cnblogs.com/jpwahaha/p/6834102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!