1 public int getCountUser() throws ParseException { 2 Session hSession = sessionFactory.getCurrentSession(); 3 Query query = hSession.createQuery("sel... ...
分类:
其他好文 时间:
2017-02-22 18:01:28
阅读次数:
146
我接触的个人感觉很简单,和超哥聊完发现。在hibernate4.0.getCurrentSession()这种方法几乎不常用,就是一个hibernate映射表的一个小例子吧 step: 1、建工程 2、导入需要的jar包 3、创建映射实体类 4、创建配置hibernate的配置文件hibernate ...
分类:
编程语言 时间:
2017-01-25 23:10:56
阅读次数:
484
publicstaticvoidaddStudent(){
sessionFactory=newAnnotationConfiguration().configure().buildSessionFactory();
Sessionsession=sessionFactory.getCurrentSession();
session.beginTransaction();
Studentstudent=newStudent("李四",34);
session.save(student);
student...
分类:
Web程序 时间:
2016-11-26 00:09:03
阅读次数:
223
1 getCurrentSession创建的session会和绑定到当前线程,而openSession不会。 2 getCurrentSession创建的线程会在事务回滚或事物提交后自动关闭,而openSession必须手动关闭 这里getCurrentSession本地事务(本地事务:jdbc)时 ...
分类:
Web程序 时间:
2016-11-12 19:16:27
阅读次数:
253
输出:Hibernate: insert into Teacher (birthDate, gender, good, name, title) values (?, ?, ?, ?, ?)falsefalse 输出:Hibernate: insert into Teacher (birthDate ...
分类:
Web程序 时间:
2016-10-08 13:43:53
阅读次数:
150
获的session对象的方式: 1.openSession 2.getCurrentSession 如果使用getCurrentSession需要在hibernate.cfg.xml文件中进行配置: 如果是本地事务(jdbc事务):<property name="hibernate.current_ ...
分类:
其他好文 时间:
2016-10-03 00:05:45
阅读次数:
194
之前在hibernate中使用了save方法,使用getCurrentSession不需要自己管理事务,很方便. 同事update和delete也有两种类似方法: 使用getCurrentSession和openSession的具体实现存在差异. ...
分类:
Web程序 时间:
2016-09-30 11:42:06
阅读次数:
130
最近做项目时,用到了hibernnate,批量删除10000条数据时,删除时前台将id传到后台,用in匹配去删除,页面直接卡死。 解决方法,将传过来的10000条id分批删除,每删除五百条后,调用getCurrentSession().flush。问题的到解决 以下资料是涉及flush参考。值得学习 ...
分类:
Web程序 时间:
2016-09-03 00:56:30
阅读次数:
164
今天学习hibernate 。 创建User类: 写User类的hiebernate 配置hibernate的映射: 写测试类: 小知识: getCurrentSession()和openSession() 用getCurrentSession()需要在xml文件中配置 openSession每次调 ...
分类:
Web程序 时间:
2016-08-15 20:24:14
阅读次数:
186
在很多时候,我们负责的项目中,在数据访问层(DAO层)通常我们会使用sql语句或者hql语句,而在我们使用hql语句拼接时有时会报错,通常的原因是:我们使用了标准的sql语句,开启的确是hibernate的面向对象的语句 sessionFactory.getCurrentSession().crea ...
分类:
Web程序 时间:
2016-08-13 12:46:24
阅读次数:
360