spring整合hibernate事務編程中錯誤分析

在spring整合hibernate過程當中,咱們的配置文件:java

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
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.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
">

<context:annotation-config></context:annotation-config>
<context:component-scan base-package="com.spring"></context:component-scan>
<!-- <context:property-placeholder location="classpath*:properties/jdbc.property" /> -->
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath*:properties/jdbc.properties"/>
</bean>
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" >
<property name="url" value="${jdbc.url}"/>
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<bean id="SessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="annotatedClasses">
      <list>
        <value>com.spring.model.User</value>
        <value>com.spring.model.Log</value>
      </list>
    </property>
    <property name="hibernateProperties">
     <props>
     <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
     <prop key=" hibernate.format_sql">true</prop>
    </props>
    </property>
    
  </bean>
  
  <!--利用Hibernate的事物,將sessionfactory注入 -->
<bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  <property name="sessionFactory" ref="SessionFactory" />
</bean>
<tx:annotation-driven transaction-manager="txManager"/>
</beans>

利用Transactional 開啓事務spring

@Transactional
 public void add(User user) {
  if (userDAO == null||logDAO==null)
   System.out.println("erro");
  else {
   userDAO.add(user);
   logDAO.addLog(new Log());
  }
 }

調用代碼sql

public class LogDAOImpl implements LogDAO {
 private SessionFactory sessionFactory;
 public SessionFactory getSessionFactory() {
  return sessionFactory;  
 }
 @Resource
 public void setSessionFactory(SessionFactory sessionFactory) {
  this.sessionFactory = sessionFactory;
 }

 /*
  * 利用Spring——hibernate的事務bean管理事務,
  * 寫了@Transaction至關於在方法以前加了beginTranscation
  * 後加了commit(),固然以前已經獲取到session,
  * 再也不須要獲取session
  * @see com.spring.dao.LogDAO#addLog(com.spring.model.Log)
  */
 @Override
 public void addLog(Log log) {
  // TODO Auto-generated method stub
  // System.out.println("user added successful");
  Session session=sessionFactory.getCurrentSession();
  log.setMes("save success by transaction too long may be cancel");
  session.save(log);
  
 }
}

測試過程當中老是報錯:HibernateException: No Hibernate Session bound to thread, and configuration does not allow creationapache

問題分析:c#

        在spring中咱們 經過配置文件,來獲取Hibernate的 SessionFactory,並將這個sessionfactory放在txmanager這個bean中管理,session

咱們在addLog中沒有開啓事務,沒有結束事務,這個就是spring經過AOP在咱們的save邏輯以前和以後加了事務的邏輯方法。ide

咱們知道AOP是經過動態代理(dynamc proxy)實現的,而dynamic prox又有兩種實現方式:proxy,和cglib實現測試

proxy實現須要類實現接口,cglib實現是直接在修改二進制碼this

能夠看出我這裏是沒有加cglib的jar包致使url

相關文章
相關標籤/搜索