Spring-Hibernate - 找不到当前线程的会话 [英] Spring-Hibernate - No Session found for current thread

查看:82
本文介绍了Spring-Hibernate - 找不到当前线程的会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



获取 org.hibernate.HibernateException:没有找到当前线程的会话



SpringBean.xml

 <?xml version =1.0encoding =UTF-8?> 
< beans xmlns =http://www.springframework.org/schema/beansxmlns:tx =http://www.springframework.org/schema/tx
xmlns:xsi =http://www.w3.org/2001/XMLSchema-instancexmlns:context =http://www.springframework.org/schema/context
xsi:schemaLocation =http:// www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/上下文
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework .ORG /模式/ TX /弹簧-TX-3.1.xsd>

< context:component-scan base-package =org.rohith/>
< context:annotation-config />
< bean id =dataSource
class =org.springframework.jdbc.datasource.DriverManagerDataSource>
< property name =driverClassNamevalue =com.mysql.jdbc.Driver/>
< property name =usernamevalue =root/>
< property name =passwordvalue =password/>
< / bean>
< bean id =sessionFactory
class =org.springframework.orm.hibernate4.LocalSessionFactoryBean>

< property name =dataSource>
< ref bean =dataSource/>
< / property>

< property name =hibernateProperties>
<道具>
< prop key =hibernate.dialect> org.hibernate.dialect.MySQLDialect< / prop>
< prop key =hibernate.show_sql> true< / prop>
< prop key =hibernate.hbm2ddl.auto> update< / prop>
< /道具>
< / property>

< property name =mappingResources>
< list>
<值> hibernate.cfg.xml< /值>
< / list>
< / property>

< / bean>
<! - < tx:annotation-driven /> - >
< bean id =transactionManagerclass =org.springframework.orm.hibernate4.HibernateTransactionManager>
< property name =sessionFactoryref =sessionFactory/>
< / bean>

< bean id =customerDaoImplclass =org.rohith.dao.impl.CustomerDaoImpl>
< property name =sessionFactoryref =sessionFactory/>
< / bean>

< bean id =customerServiceImplclass =org.rohith.service.impl.CustomerServiceImpl>
< property name =customerDaoImplref =customerDaoImpl/>
< / bean>

< / beans>

hibernate.cfg.xml

 <?xml version ='1.0'encoding ='utf-8'?> 
<!DOCTYPE hibernate-configuration PUBLIC
- // Hibernate / Hibernate配置DTD 3.0 // EN
http://www.hibernate.org/dtd/hibernate-configuration -3.0.dtd>

< hibernate-configuration>
< session-factory>
<! - 给注释的实体类命名 - >
< mapping class =org.rohith.model.Customer/>
< / session-factory>
< / hibernate-configuration>

CustomerServiceImpl.java

  package org.rohith.service.impl; 

import org.rohith.dao.impl.CustomerDaoImpl;
import org.rohith.model.Customer;
import org.rohith.service.CustomerService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class CustomerServiceImpl实现CustomerService {
$ b $ @Autowired
private CustomerDaoImpl customerDaoImpl;

@Override
public void saveCustomer(Customer customer){
customerDaoImpl.saveCustomer(customer);
}
public CustomerDaoImpl getCustomerDaoImpl(){
return customerDaoImpl;
}
public void setCustomerDaoImpl(CustomerDaoImpl customerDaoImpl){
this.customerDaoImpl = customerDaoImpl;
}

}

CustomerDaoImpl.java

  package org.rohith.dao.impl; 

import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.rohith.dao.CustomerDao;
import org.rohith.model.Customer;


公共类CustomerDaoImpl实现CustomerDao {

private SessionFactory sessionFactory;

@Override
public void saveCustomer(Customer customer){
Session session = getSession();
session.clear();
尝试{
session.saveOrUpdate(customer);
session.flush();
} catch(Throwable e){
抛出新的RuntimeException(e.getMessage(),e);
}
}
public void setSessionFactory(SessionFactory sessionFactory){
this.sessionFactory = sessionFactory;
}
public SessionFactory getSessionFactory(){
return this.sessionFactory;
}

public Session getSession()抛出HibernateException {
Session sess = getSessionFactory()。getCurrentSession();
if(sess == null){
sess = getSessionFactory()。openSession();
}
// Session sess = getSessionFactory()。openSession();
返回sess;
}

}

CustomerAction.java

  public class CustomerAction extends ActionSupport {
private String name;
private String addr1;
private String addr2;
私人字符串城市;
私有字符串状态;

私人CustomerServiceImpl customerServiceImpl;

// Getters和setters

public String execute(){
Customer cust = new Customer();
cust.setName(name);
cust.setAddress1(addr1);
cust.setAddress2(addr2);
cust.setCity(city);
cust.setState(state);
System.out.println(name);
的WebApplicationContext的WebApplicationContext = WebApplicationContextUtils
.getRequiredWebApplicationContext(Request()方法的getSession()
.getServletContext());
customerServiceImpl =(CustomerServiceImpl)webApplicationContext.getBean(customerServiceImpl);
customerServiceImpl.saveCustomer(cust);
// saveCust(cust);
返回成功;

protected HttpServletRequest getRequest(){
return ServletActionContext.getRequest();

protected HttpServletResponse getResponse(){
return ServletActionContext.getResponse();


我得到的异常

  org.hibernate.HibernateException:否会话找到当前线程
org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java: 97)
org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:978)
org.rohith.dao.impl.CustomerDaoImpl.getSession(CustomerDaoImpl.java:33)
的有机rohith.dao.impl.CustomerDaoImpl.saveCustomer(CustomerDaoImpl.java:16)
org.rohith.service.impl.CustomerServiceImpl.saveCustomer(CustomerServiceImpl.java:18)
org.rohith.CustomerAction.execute( CustomerAction.java:36)
sun.reflect.NativeMethodAccessorImpl.invoke0(本机方法)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
java.lang.reflect.Method.invok e(Method.java:606)


解决方案

您的Spring配置中指定的事务管理器,但没有配置应用事务的时间或地点。



SpringBean.xml 中,您应取消注释< code $< tx:annotation-driven /> :

 < tx :annotation-driven transaction-manager =transactionManager/> 

然后您应该注释 CustomerServiceImpl.saveCustomer 方法作为 @Transactional

  @Service 
public类CustomerServiceImpl实现CustomerService {

...

@Override
@Transactional
public void saveCustomer(Customer customer){
customerDaoImpl。 saveCustomer(客户);
}

...
}


I have a java stuts2 web application using spring and hibernate.

Im getting org.hibernate.HibernateException: No Session found for current thread.

SpringBean.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-3.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">

    <context:component-scan base-package="org.rohith" />
    <context:annotation-config />
    <bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver" />
        <property name="url" value="jdbc:mysql://localhost:3306/company" />
        <property name="username" value="root" />
        <property name="password" value="password" />
    </bean>
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">

        <property name="dataSource">
            <ref bean="dataSource" />
        </property>

        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">update</prop>
            </props>
        </property>

        <property name="mappingResources">
            <list>
                <value>hibernate.cfg.xml</value>
            </list>
        </property>

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

    <bean id="customerDaoImpl" class="org.rohith.dao.impl.CustomerDaoImpl">
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>

    <bean id="customerServiceImpl" class="org.rohith.service.impl.CustomerServiceImpl">
        <property name="customerDaoImpl" ref="customerDaoImpl"/>
    </bean>

</beans>

hibernate.cfg.xml

<?xml version='1.0' encoding='utf-8'?>
   <!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>  
        <!-- Names the annotated entity class -->
        <mapping class="org.rohith.model.Customer"/>    
    </session-factory>  
</hibernate-configuration>

CustomerServiceImpl.java

package org.rohith.service.impl;

import org.rohith.dao.impl.CustomerDaoImpl;
import org.rohith.model.Customer;
import org.rohith.service.CustomerService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class CustomerServiceImpl implements CustomerService {

    @Autowired
    private CustomerDaoImpl customerDaoImpl;

    @Override
    public void saveCustomer(Customer customer) {
        customerDaoImpl.saveCustomer(customer);
    }
    public CustomerDaoImpl getCustomerDaoImpl() {
        return customerDaoImpl;
    }
    public void setCustomerDaoImpl(CustomerDaoImpl customerDaoImpl) {
        this.customerDaoImpl = customerDaoImpl;
    }

}

CustomerDaoImpl.java

package org.rohith.dao.impl;

import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.rohith.dao.CustomerDao;
import org.rohith.model.Customer;


public class CustomerDaoImpl   implements CustomerDao {

    private SessionFactory sessionFactory;

    @Override
    public void saveCustomer(Customer customer) {
        Session session = getSession();
        session.clear();
        try {
                session.saveOrUpdate(customer);
                session.flush();
        } catch (Throwable e) {
            throw new RuntimeException(e.getMessage(), e);
        }
    }
    public void setSessionFactory(SessionFactory sessionFactory) {
        this.sessionFactory = sessionFactory;
    }
    public SessionFactory getSessionFactory() {
        return this.sessionFactory;
    }

    public Session getSession() throws HibernateException {
        Session sess = getSessionFactory().getCurrentSession();
        if (sess == null) {
            sess = getSessionFactory().openSession();
        }
//      Session sess = getSessionFactory().openSession();
        return sess;
    }

}

CustomerAction.java

public class CustomerAction extends ActionSupport{
    private String name;
    private String addr1;
    private String addr2;
    private String city;
    private String state;

    private CustomerServiceImpl customerServiceImpl;

//Getters and setters

    public String execute(){
        Customer cust= new Customer();
        cust.setName(name);
        cust.setAddress1(addr1);
        cust.setAddress2(addr2);
        cust.setCity(city);
        cust.setState(state);
        System.out.println(name);
        WebApplicationContext webApplicationContext = WebApplicationContextUtils
                .getRequiredWebApplicationContext(getRequest().getSession()
                        .getServletContext());
        customerServiceImpl = (CustomerServiceImpl) webApplicationContext.getBean("customerServiceImpl");
        customerServiceImpl.saveCustomer(cust);
        //saveCust(cust);
        return "success";
    }
protected HttpServletRequest getRequest() {
        return ServletActionContext.getRequest();
    }
protected HttpServletResponse getResponse() {
        return ServletActionContext.getResponse();
    }
}

The Exception I am getting

org.hibernate.HibernateException: No Session found for current thread
    org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:97)
    org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:978)
    org.rohith.dao.impl.CustomerDaoImpl.getSession(CustomerDaoImpl.java:33)
    org.rohith.dao.impl.CustomerDaoImpl.saveCustomer(CustomerDaoImpl.java:16)
    org.rohith.service.impl.CustomerServiceImpl.saveCustomer(CustomerServiceImpl.java:18)
    org.rohith.CustomerAction.execute(CustomerAction.java:36)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    java.lang.reflect.Method.invoke(Method.java:606)

解决方案

You have a transaction manager specified in your Spring config, but no configuration on when or where to apply transactions.

In your SpringBean.xml you should uncomment <tx:annotation-driven/>:

<tx:annotation-driven transaction-manager="transactionManager"/>

And then you should annotate the CustomerServiceImpl.saveCustomer method as @Transactional:

@Service
public class CustomerServiceImpl implements CustomerService {

    ...

    @Override
    @Transactional
    public void saveCustomer(Customer customer) {
        customerDaoImpl.saveCustomer(customer);
    }

    ...
}

这篇关于Spring-Hibernate - 找不到当前线程的会话的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆