org.springframework.orm.hibernate3.HibernateTemplate

当session中出现两个相同标示的(相同主键)的对象,一个是持久态,一个是瞬时态,想更新瞬时态对象到数据库,如果不做处理,则报出异常,session中出现两个相同标示的不同对象异常。处理方法。(业务层代码,省去了dao层)

一:通过hibernateTemplate获取映射seession(模拟)

 1 /**
 2      *
 3     * @Title: updateTest
 4     * @Description: TODO(这里用一句话描述这个方法的作用)
 5     * @author 尚晓飞
 6     * @date 2014-9-19 下午7:42:36
 7     * @see org.ledger.service.IntercoursePersionService#updateTest()
 8      */
 9     @Override
10     public void updateTest() {
11         // TODO Auto-generated method stub
12         //持久态的对象
13         IntercoursePersion intercoursePersion=intercoursePersionDao.find("1");
14         String idString=intercoursePersion.getIntercoursePersionId();
15
16         //相当于临时态的新对象,与持久态有相同的主键
17         IntercoursePersion newobj=new IntercoursePersion();
18         newobj.setIntercoursePersionId(idString);
19         newobj.setName("黄天在上");
20
21         //获取hibernate.session对象,将持久态的对象变成游离态。然后修改临时态。通过spring整合的hibernateTemplate获取session
22         Session session=intercoursePersionDao.getHibernateTemplate().getSessionFactory().openSession();
23         session.beginTransaction();
24         session.evict(intercoursePersion);
25         session.update(newobj);
26         session.getTransaction().commit();
27
28
29     }

二:通过hibernateTemplate将持久态转游离态,保存瞬时态。

 1 /**
 2      *
 3     * @Title: updateTest
 4     * @Description: TODO(这里用一句话描述这个方法的作用)
 5     * @author 尚晓飞
 6     * @date 2014-9-19 下午7:42:36
 7     * @see org.ledger.service.IntercoursePersionService#updateTest()
 8      */
 9     @Override
10     public void updateTest() {
11         // TODO Auto-generated method stub
12         //持久态的对象
13         IntercoursePersion intercoursePersion=intercoursePersionDao.find("1");
14         String idString=intercoursePersion.getIntercoursePersionId();
15
16         //相当于临时态的新对象,与持久态有相同的主键
17         IntercoursePersion newobj=new IntercoursePersion();
18         newobj.setIntercoursePersionId(idString);
19         newobj.setName("黄天在上");
20
21         //获取hibernateTemlate对象,将持久态的对象变成游离态,然后保存瞬时态
22         HibernateTemplate hibernateTemplate=intercoursePersionDao.getHibernateTemplate();
23         hibernateTemplate.evict(intercoursePersion);
24         hibernateTemplate.update(newobj);
25
26     }

三:以上简单业务不错,复杂业务报错。有待解决。

  

时间: 2024-10-24 14:44:08

org.springframework.orm.hibernate3.HibernateTemplate的相关文章

org.springframework.orm.hibernate3.LocalSessionFactoryBean的疑惑解决办法

在项目中使用了SSH框架(Struts2 + Spring3+ Hibernate3),applicationContext中配置了sessionFactory <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource" ref="dat

Caused by: java.lang.ClassNotFoundException: org.springframework.orm.hibernate4.HibernateTemplate

1.错误描述 严重: Context initialization failed org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.springframework.orm.hibernate4.HibernateTemplate] for bean with name 'hibernateTemplate' defined in ServletContext resourc

Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider停住了

2015.1.24进行了服务器的搬家,搬家后,更换了新的IP,导致新的IP访问以前IP的数据库服务无法成功Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider停住了 检查发现: $ nmap -p 80 10.1.2.5 Starting Nmap 4.62 ( http://nmap.org ) at 2009-02-05 18:49 PST

org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider

tomcat启动停止到这: Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider 曾错误原因:代码中配置了多个数据源,然而在更换数据库ip时,只更新了一个.所以其它数据源连接是无效的.

hibernate4 , spring3 使用 org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean 报错 Implementing class

错误代码如下 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in URL [file:/D:/eclipse3/workspace/diancai_parent/diancai_web/src/main/webapp/WEB-INF/classes/applicationContext.xml]:

ssh中org.springframework.orm.hibernate4.support.OpenSessionInViewFilter的作用及配置

 org.springframework.orm.hibernate4.support.OpenSessionInViewFilter 是Spring为我们解决Hibernate的Session的关闭与开启问题.  Hibernate 允许对关联对象.属性进行延迟加载,但是必须保证延迟加载的操作限于同一个 Hibernate Session 范围之内进行.如果 Service 层返回一个启用了延迟加载功能的领域对象给 Web 层,当 Web 层访问到那些需要延迟加载的数据时,由于加载领域对象的

org.springframework.orm.hibernate4.support.OpenSessionInViewFilter

---恢复内容开始--- 1 /* 2 * Copyright 2002-2014 the original author or authors. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of t

org.springframework.orm.hibernate4.support.OpenSessionInterceptor

/* * Copyright 2002-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://

org.springframework.orm.jpa.JpaSystemException问题记录

最近在使用jpa的过程中出现了如下异常: org.springframework.orm.jpa.JpaSystemException: could not execute statement; nested exception is org.hibernate.exception.GenericJDBCException: could not execute statement at org.springframework.orm.jpa.vendor.HibernateJpaDialect.