test
摘要: 官方文档的原文如下:The hibernate.current_session_context_class configuration parameter defines whichorg.hibernate.context.CurrentSessionContext implementation ... 阅读全文
posted @ 2014-12-17 16:38 Lechance 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 比较openSession和getCurrentSession这两个方法之前,我们先认识一下这两个方法。在进行配置信息管理时,我们一般进行一下简单步骤:Configuration cfg= new Configuration();// 获得配置信息对象SessionFactory sf = cfg.... 阅读全文
posted @ 2014-12-17 15:55 Lechance 阅读(224) 评论(0) 推荐(0) 编辑
摘要: Hibernate AnnotationsMapping composite primary keys and foreign keys to composite primary keys:http://docs.jboss.org/hibernate/annotations/3.5/referen... 阅读全文
posted @ 2014-12-17 14:46 Lechance 阅读(1135) 评论(0) 推荐(0) 编辑
摘要: 在hibernate中实现自定义类型,只要实现UserType接口即可或者以Component的形式提供.JPA的@Embedded有点类似,通过此注释可以在你的Entity中使用一般的java对象,此对象需要用@Embeddable标注举个简单例子:Person类有一个name属性,name应该有... 阅读全文
posted @ 2014-12-17 13:44 Lechance 阅读(195) 评论(0) 推荐(0) 编辑
摘要: @TableGenerator 是在数据库生成一张表来管理主键生成策略import javax.persistence.TableGenerator;@TableGenerator( name = "Teacher_GEN", // TableGenerator's name table = "GE... 阅读全文
posted @ 2014-12-17 09:39 Lechance 阅读(362) 评论(0) 推荐(0) 编辑