
hibernate
qchery
崇尚专注,乐于分享!
个人站点:https://qchery.gitee.io
微信公众号:Q码记
欢迎大家关注交流!!!
展开
-
hibernate HQL的简单使用一
Hibernate中的HQL使用 1、 建立相应的关系表 Category类: package com.edu.hpu; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class Catego原创 2013-05-08 19:26:31 · 558 阅读 · 0 评论 -
HQL 简单使用二
HQL的简单使用2 1、 Category类 package com.edu.hpu; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class Category { private原创 2013-05-08 19:26:35 · 413 阅读 · 0 评论 -
Hibernate 二级缓存举例(4.2 Final版)
Hibernate 4.2里面的缓存 1、 hibernate 里面的缓存分成一级缓存与二级缓存与查询缓存 一级缓存:Session级别的缓存二级缓存:SessionFactory级别的缓存查询缓存 2、 一级缓存 @Test public void testCache() { Session s = sf.getCurrentSession(); s.beginTrans原创 2013-05-08 19:26:52 · 456 阅读 · 0 评论 -
Hibernate 里面的1+N问题
Hibernate之1+N问题 1、 Category类 package com.edu.hpu; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class Category { private原创 2013-05-08 19:26:50 · 462 阅读 · 0 评论 -
Annotation使用两个foreign key做联合主键
Annotation使用两个foreign key做联合主键 1、 数据库里面的表结构 学生:(Id , Name) 课程:(Id , Name) 选课表:(Student_ID , Course_ID , Score) 2、 Student类 package com.edu.hpu; import java.util.HashSet; import java.util.Set;原创 2013-05-08 19:26:33 · 1081 阅读 · 0 评论