zoukankan      html  css  js  c++  java
  • Spring4整合Hibernate4出现的错误的解决

    今天在使用Spring4整合Hibernate4过程中出现错误
    org.hibernate.HibernateException: Could not obtain transaction-synchronized Session for current thread

    错误的原因是由于hibernate4修改了hibernate3中getCurrentSession()方法的支持,需要在service层注解@Transactional
    具体的代码如下:
    Spring-hibernate.xml
    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xmlns:aop="http://www.springframework.org/schema/aop"
    5. xmlns:tx="http://www.springframework.org/schema/tx"
    6. xmlns:context="http://www.springframework.org/schema/context"
    7. xsi:schemaLocation="http://www.springframework.org/schema/beans
    8. http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
    9. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
    10. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
    11. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
    12. ">
    13. <!-- Hibernate4 -->
    14. <!-- 加载资源文件 其中包含变量信息,必须在Spring配置文件的最前面加载,即第一个加载-->
    15. <context:property-placeholder location="classpath:db.properties" />
    16. <bean id="sessionFactory"
    17. class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    18. <property name="dataSource" ref="dataSource" />
    19. <property name="packagesToScan">
    20. <list>
    21. <!-- 可以加多个包 -->
    22. <value>com.xrea.entity</value>
    23. </list>
    24. </property>
    25. <property name="hibernateProperties">
    26. <props>
    27. <prop key="hibernate.dialect">${hibernate.dialect}</prop>
    28. <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
    29. <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
    30. </props>
    31. </property>
    32. </bean>
    33. <!-- 数据库映射 -->
    34. <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    35. <property name="driverClassName" value="${jdbc.driverClassName}" />
    36. <property name="url" value="${jdbc.url}" />
    37. <property name="username" value="${jdbc.user}" />
    38. <property name="password" value="${jdbc.pass}" />
    39. </bean>
    40. <!-- 配置Hibernate事务管理器 -->
    41. <bean id="transactionManager"
    42. class="org.springframework.orm.hibernate4.HibernateTransactionManager">
    43. <property name="sessionFactory" ref="sessionFactory" />
    44. </bean>
    45. <!-- 配置事务异常封装 -->
    46. <bean id="persistenceExceptionTranslationPostProcessor"
    47. class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor" />
    48. <!-- 声明式容器事务管理 ,transaction-manager指定事务管理器为transactionManager -->
    49. <tx:advice id="txAdvice" transaction-manager="transactionManager">
    50. <tx:attributes>
    51. <tx:method name="add*" propagation="REQUIRED" />
    52. <tx:method name="save*" propagation="REQUIRED" />
    53. <tx:method name="get*" propagation="REQUIRED" />
    54. <tx:method name="*" read-only="true" />
    55. </tx:attributes>
    56. </tx:advice>
    57. <aop:config expose-proxy="true">
    58. <!-- 只对业务逻辑层实施事务 -->
    59. <aop:pointcut id="txPointcut" expression="execution(* com.xrea.service..*.*(..))" />
    60. <!-- Advisor定义,切入点和通知分别为txPointcut、txAdvice -->
    61. <aop:advisor pointcut-ref="txPointcut" advice-ref="txAdvice"/>
    62. </aop:config>
    63. </beans>
    web.xml
    1. <?xml version="1.0" encoding="UTF-8"?>
      <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
        <display-name>easyui</display-name>
        <!-- 加载Spring相关配置文件 -->
        <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring/spring-*.xml</param-value>
        </context-param>
        <!-- 启动Spring的监听 -->
        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
         <!-- 定义DispatcherServlet -->
        <servlet>
          <servlet-name>mvc-dispatcher</servlet-name>
          <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
          <init-param>
            <!-- 默认/WEB-INF/[servlet名字]-servlet.xml加载上下文, 
                如果配置了contextConfigLocation参数,
                将使用classpath:/mvc-dispatcher-servlet.xml加载上下文
            -->
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring/spring-mvc.xml</param-value>
          </init-param>
          <load-on-startup>1</load-on-startup>
        </servlet>
        <!-- 拦截匹配的请求,这里所有请求采用名字为mvc-dispatcher的DispatcherServlet处理 -->
        <servlet-mapping>
          <servlet-name>mvc-dispatcher</servlet-name>
          <url-pattern>*.html</url-pattern>
        </servlet-mapping>
        <welcome-file-list>
          <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
      </web-app>
    spring-mvc.xml
    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xmlns:aop="http://www.springframework.org/schema/aop"
    5. xmlns:tx="http://www.springframework.org/schema/tx"
    6. xmlns:context="http://www.springframework.org/schema/context"
    7. xsi:schemaLocation="http://www.springframework.org/schema/beans
    8. http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
    9. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
    10. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
    11. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
    12. ">
    13. <context:annotation-config></context:annotation-config>
    14. <context:component-scan base-package="com.xrea"></context:component-scan>
    15. <!-- 基于注释的业务,当注释中发现@Transactional时,使用id为transactionManager的事务管理器 -->
    16. <!-- 如果没有设置transaction-manager的值,则spring以缺省默认的事务管理器来处理事务,默认事务管理器为第一个加载的事务管理器 -->
    17. <tx:annotation-driven transaction-manager="transactionManager"/>
    18. <!-- 定义视图解析器 -->
    19. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    20. <property name="prefix">
    21. <value>/WEB-INF/jsp/</value>
    22. </property>
    23. <property name="suffix">
    24. <value>.jsp</value>
    25. </property>
    26. </bean>
    27. </beans>
    然后在Service层添加@Transactional注解即可




    高质量的代码就是对程序自己最好的注释。当你打算要添加注释时,问问自己,“我如何能改进编码以至于根本不需要添加注释?”改进你的代码,然后才是用注释使它更清楚。
  • 相关阅读:
    C# 打开模态对话框 和打开文件夹
    C# 统计字符串出现的个数
    html table内容不随标题滚动
    log4net 局部代码 看不懂....
    js的replace, 高亮, insertAdjacentHTML , tbody.innerHTML
    python之tkinter使用举例-Button
    使用pygal_maps_world.i18n中数据画各大洲地图
    使用pygal_maps_world展示世界地图
    python之pygal:掷两个不同的骰子并统计大小出现次数
    python之文件目录操作
  • 原文地址:https://www.cnblogs.com/endy-blog/p/5879504.html
Copyright © 2011-2022 走看看