2016年8月25日

hibernate的几个配制 ,其一:hibernate.cfg.xml,其二:Emp.hbm.xml ;其三:Dept.hbm.xml ;其四:Student.hbm.xml

摘要: 总配制hibernate.cfg.xml: Emp.hbm.xml 多对一 Dept.hbm.xml 一对多: Student.hbm.xml 多对多: 阅读全文

posted @ 2016-08-25 01:29 loongs 阅读(703) 评论(0) 推荐(0) 编辑

hibernate 分页

摘要: hibernate提供了非常方便的分页方法,当然是要使用Query这个东西了 Query query=session.createQuery("from Course"); //当前页数 int currPage=1; //一页显示数据 int rowPage=3; query.setFirstRe 阅读全文

posted @ 2016-08-25 01:13 loongs 阅读(123) 评论(0) 推荐(0) 编辑

一级缓存 和二级缓存

摘要: hibernate默认开启一级缓存,其实和我们的mybatis的一级缓存一样的默认保留级别是session级别。session关闭我们的保存的缓存消失,否则一直存在,想想我们之前修改的数据。看这个实验 Student stu=(Student) session.get(Student.class, 阅读全文

posted @ 2016-08-25 01:12 loongs 阅读(160) 评论(0) 推荐(0) 编辑

hibernate 的get和load

摘要: 首先观察这样一个实验 Student stu=(Student) session.get(Student.class, 1); //切换这个位置 System.out.println(" 我是华丽丽的风格线 "); System.out.println(stu.getStuName()); 当使用l 阅读全文

posted @ 2016-08-25 01:06 loongs 阅读(185) 评论(0) 推荐(0) 编辑

导航