错误记录(九)Could not obtain transaction-synchronized Session for current thread

报错信息:

org.hibernate.HibernateException: Could not obtain transaction-synchronized Session for current thread
	at org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:134)
	at org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:1041)

这个错误的提示是无法获取当前transaction-synchronized线程的会话
原因是没有为用到了事务的方法定义事务


比如:在Action中定义了该方法,用于删除数据信息操作:


而在applicationContext.xml中是这样设置的:


这表示只有以do和find打头的方法才能事务,其他方法不走事务,删除自然不能成功,于是报上面的错误。


当然,也可能不是上面这么粗心的原因,如果使用了Hibernate4报错的话,可以在web.xml中加入如下配置,程序也可以正常运行了。

<filter>
	<filter-name>SpringOpenSessionInViewFilter</filter-name>
	<filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
</filter>
  <filter-mapping>
    	<filter-name>SpringOpenSessionInViewFilter</filter-name>
   	<url-pattern>/*</url-pattern>
  </filter-mapping>

网上还看到一种解决方法,针对第二种情况的,测试也可行。
1. 在spring 配置文件中加入
2. 在处理业务逻辑的类上采用注解:<tx:annotation-driven transaction-manager="transactionManager"/>

如:

@Service
public class CustomerServiceImpl implements CustomerService {  
    @Transactional
    public void saveCustomer(Customer customer) {
        customerDaoImpl.saveCustomer(customer);
    }
    ...
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值