zoukankan      html  css  js  c++  java
  • Spring4 与 Hibernate4 整合过程中的问题记录

    Spring4使用注解配置,很方便也很有趣,就是有一些坑需要自己去发现和解决,笔者列出自己在使用过程中遇到的问题,希望对您有所帮助。

    1、如果使用hibernate.cfg.xml配置文件配置Hibernate4,必须要在Spring配置文件中(例如applicationContext.xml)配置dataSource,否则编译器会报错。

        <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"
              p:driverClass="com.mysql.jdbc.Driver"
              p:jdbcUrl="jdbc:mysql://localhost:3306/bunny"
              p:user="root"
              p:password="123"
        />
        
        <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
            <property name="configLocations">
                <value>classpath:hibernate.cfg.xml</value>
            </property>
            <property name="dataSource" ref="dataSource"/>
        </bean>

    2、错误:org.hibernate.HibernateException: save is not valid without active transaction

    解决方法:hibernate.cfg.xml 不能 有以下字段:

    <property name="hibernate.current_session_context_class">thread</property>

    3、错误: org.hibernate.HibernateException: No Session found for current thread

    解决方法:在Spring配置文件中增加注解配置的事务驱动:

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

    4、错误:java.lang.NoClassDefFoundError: org/aopalliance/intercept/MethodInterceptor

    解决方法:导入aopalliance.jar,注意该文件不能和aopalliance-alpha1.jar同时存在,否则API会冲突。

  • 相关阅读:
    javascript 多条件分支结构
    初步认识android四大组件之Broadcast
    Apache Tomcat6之阀学习整理
    用java实现一道c笔试题
    Apache Tomcat6 之连接器学习整理(1)
    iphone常用代码块 HA
    iphone开发UIWebView 的使用 HA
    quickmaps HA
    iphone开发uiscrollview 的使用 HA
    iphone api 使用说明详细 HA
  • 原文地址:https://www.cnblogs.com/gugia/p/4626196.html
Copyright © 2011-2022 走看看