找不到当前线程的会话(Spring 3.1.X和Hibernate 4)

时间:2012-01-13 06:02:12

标签: java hibernate spring spring-3 hibernate-4.x

我正在尝试使用Spring 3.1和Hibernate 4来设置我的项目。我一直在线学习一些教程。我得到一个奇怪的错误,根据Spring论坛应该已经修复了Spring 3.1。 Spring Bug Tracker

当我的服务调用getCurrentSession()时,它会抛出以下异常:

org.hibernate.HibernateException: **No Session found for current thread**] with root cause org.hibernate.HibernateException: No Session found for current thread
at org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:97) at
org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:881)

****编辑:根据Spring Spring 3.1 Documentation for Transactions更新了我的spring-dao.xml。我尝试使用org.apache.commons.dbcp.BasicDataSource替换我的数据源。我的配置中是否有任何可能导致此问题的属性? ****

这是我的spring-dao.xml:

 <!-- Enable annotation style of managing transactions -->
<tx:annotation-driven transaction-manager="transactionManager" />   

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="hibernateProperties">
        <value>hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect</value>
    </property>
</bean>

<!-- Declare a datasource that has pooling capabilities-->   
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
            destroy-method="close"
            p:driverClass="${app.jdbc.driverClassName}"
            p:jdbcUrl="${app.jdbc.url}"
            p:user="${app.jdbc.username}"
            p:password="${app.jdbc.password}"
            p:acquireIncrement="5"
            p:idleConnectionTestPeriod="60"
            p:maxPoolSize="100"
            p:maxStatements="50"
            p:minPoolSize="10" />

<!-- Declare a transaction manager-->
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager" 
            p:sessionFactory-ref="sessionFactory" />

我的用户bean(User.java)

package com.foo.lystra.beans;

import java.io.Serializable;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name="users")
public class User implements Serializable {
private static final long serialVersionUID = -5527566191402296042L;

@Id
@Column(name = "idusers")
private Integer user_id;

@Column(name="login_name")
private String loginName;

@Column(name="password")
private String password;

@Column(name="role")
private String role;

@Column(name="congregation_id")
private Integer congregation_id;

public Integer getUser_id() {
    return user_id;
}
public void setUser_id(Integer user_id) {
    this.user_id = user_id;
}
public String getLoginName() {
    return loginName;
}
public void setLoginName(String loginName) {
    this.loginName = loginName;
}
public String getPassword() {
    return password;
}
public void setPassword(String password) {
    this.password = password;
}
public String getRole() {
    return role;
}
public void setRole(String role) {
    this.role = role;
}
public Integer getCongregation_id() {
    return congregation_id;
}
public void setCongregation_id(Integer congregation_id) {
    this.congregation_id = congregation_id;
}

public String toString() {
    return "user_name: " + this.loginName + " congregation_id: " + this.congregation_id.toString();
}
}

最后我的服务......

package com.foo.lystra.services;

import java.util.List;

import javax.annotation.Resource;

import org.apache.commons.logging.LogFactory;
import org.apache.commons.logging.Log;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.foo.lystra.beans.User;
import com.foo.lystra.beans.Congregation;

@Service("congregationUserService")
@Transactional
public class CongregationUserService {
protected static Log logger = LogFactory.getLog(CongregationUserService.class);

@Resource(name="sessionFactory")
private SessionFactory sessionFactory;

public List<User> getAllUsers() {
    logger.debug("getting all users");

            //Exception is thrown on this next line:
    Session session = sessionFactory.getCurrentSession();

    Query query = session.createQuery("FROM users");
    return query.list();
}
}

我意识到我的数据源可能没有被使用。如果我忘记包含任何配置,我可以更新这篇文章。此外,如果需要Tomcat启动日志,我也可以提供它们。

14 个答案:

答案 0 :(得分:12)

我在Web应用程序中遇到同样的问题。问题在于两个配置文件中都存在:application-context.xml和webmvc-context.xml。 webmvc-context.xml在application-context.xml之后加载。我认为在加载application-context.xml时,DAO类首先加载事务引用,但是当加载webmvc-context.xml时,它将替换为另一个没有事务引用的对象。无论如何,我通过扫描的特定包解决了问题:
<context:component-scan base-package="com.app.repository" />
对于application-context.xml和
<context:component-scan base-package="com.app.web" />
对于webmvc-context.xml。

答案 1 :(得分:6)

我在spring-4.0.6和hibernate-4.3.6中遇到了这个问题。

解决方案是将所有注释驱动的,组件扫描,注释驱动的指令从root-context.xml移动到servlet-context.xml:

<mvc:annotation-driven />
<context:component-scan base-package="ru.dd.demo" />
<tx:annotation-driven transaction-manager="transactionManager" />

dataSource,sessionFactory和transactionManager仍然可以在root-context.xml中定义。

答案 2 :(得分:2)

它是一个Web应用程序吗?如果是这样,请考虑使用OpenSessionInViewFilter。因为我相信当使用currentSession(绑定到当前线程)时,代码中必须有一个点从线程解除绑定会话。

我不确定交易经理是否这样做。

答案 3 :(得分:2)

我和你的错误一样。

这是一个尚未解决的错误。

https://jira.springsource.org/browse/SPR-9028

尝试将hibernate jar文件更改为3.6。因为Spring使用它。

http://mvnrepository.com/artifact/org.springframework/spring-orm/3.1.0.RELEASE

这里是Spring 3.1工件和依赖项

答案 4 :(得分:1)

Spring Reference(3.2.x)中所述:

  

在Web MVC框架中,每个DispatcherServlet都有自己的   WebApplicationContext,它继承了已定义的所有bean   根WebApplicationContext。这些继承的bean可以   在特定于servlet的范围内重写,您可以定义新的   给定Servlet实例本地的特定于范围的bean。

因此,在您的控制器中可以看到使用<context:component-scan>定义或扫描的Bean,因此您可以@Autowired它们,但在其他applicationContext *文件中不可见,因此除非<tx:annotation-driven/>未定义DispatcherServlet的配置 @Transactional 将无效。

所以我猜你可能在你的DispatcherServlet的config和<context:component-scan>声明中有一个<tx:annotation-driven/>你的applicationContext * .xml,所以 @Autowired 工作正常,但是 @Transactional 不是。

答案 5 :(得分:1)

我遇到了同样的问题并测试了所有已回答的解决方案。 Vali的回答非常有帮助。对我有用的是将这些bean从applicationContext.xml移动到web-servlet.xml:

<bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="configLocation">
            <value>classpath:hibernate.cfg.xml</value>
        </property>       
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>
    </bean>

    <tx:annotation-driven />
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

此外,您需要添加web-servlet.xml:

xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"

xsi:schemaLocation="       
        http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    "

答案 6 :(得分:1)

在web.xml中添加OpenSessionInViewFilter过滤器

<filter>
    <filter-name>hibernateFilter</filter-name>
    <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
    <init-param>
        <param-name>sessionFactoryBeanName</param-name>
        <param-value>sessionFactory</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>hibernateFilter</filter-name>
    <url-pattern>/*</url-pattern>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>FORWARD</dispatcher>
</filter-mapping>

答案 7 :(得分:0)

不确定,但问题可能在p:packagesToScan。您的ConfigurationUserService位于包com.foo.lystra.services中,但p:packagesToScan包含com.foo.lystra.beans

答案 8 :(得分:0)

您的配置未指向带注释的类。添加它们

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
  <property name="hibernateProperties">
     <value>hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect</value>
  </property>

  <property name="annotatedClasses">
    <list>
      <value>test.package.Foo</value>
      <value>test.package.Bar</value>
    </list>
  </property>
</bean>

它类似于之前的AnnotationSessionFactoryBean。检查Api here

答案 9 :(得分:0)

我相信你需要:

<context:component-scan base-package="com.foo.package" />

否则,spring上下文将找不到您的服务,因此不会使用Transactional方面包装您的方法。

答案 10 :(得分:0)

有完全相同的错误,只需为我的服务创建界面即可解决。所以在你的情况下,我会创建:

public interface ICongregationUserService {
   public List<User> getAllUsers();
}

然后更改CongregationUserService以实现它:

@Service("congregationUserService")
@Transactional
public class CongregationUserService implements ICongregationUserService{
   //...
}

以及您自动装配CongregationUserService的位置,而是自动装配ICongregationUserService:

@Autowired
private ICongregationUserService congregationUserService;

答案 11 :(得分:0)

我通过将<tx:annotation-driven transaction-manager="miTransactionManager"/>放在dispatcher-servlet.xml而不是任何其他xml配置文件中解决了这个问题。

我认为这种方式允许bean在相同的春天环境中共存。

答案 12 :(得分:0)

我发现这个问题是春天的错误

此链接https://jira.springsource.org/browse/SPR-9020报告问题..

修复它我已经使用了Matias Mirabelli的解决方法,可以在此链接上找到https://gist.github.com/seykron/4770724

正在发生的事情是用Propagation.SUPPORTS注释的方法支持事务,但是如果没有绑定到线程的事务,那么spring会抛出HibernateException

而不是创建新的会话

为了配置sollution,你可以使用hibernate属性:

hibernate.current_session_context_class = com.your.package.TransactionAwareSessionContext

答案 13 :(得分:0)

我把

<context:component-scan base-package="com.sprhib.repo"/>  #(some class files are annotaed by @Repository,@Service,@Component)
<tx:annotation-driven transaction-manager="txManager" />
<task:annotation-driven/>

在root.xml中。

我把

<context:component-scan base-package="com.sprhib.web"/>  #(some class files are annotaed by @Controller)
<mvc:annotation-driven />

在servlet-context.xml中。

有效。