用于弹簧应用的hibernate配置错误?

时间:2013-12-04 07:59:07

标签: java spring hibernate hibernate-session

我在Spring应用程序中遇到了hibernate的问题。我认为必须有错误的配置。

的hibernate.cfg.xml

<hibernate-configuration>
    <session-factory>
        <property name="hibernate.bytecode.use_reflection_optimizer">false</property>
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.password">password</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/cloud_app?autoReconnect=true</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">root</property>
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        <property name="hibernate.connection.release_mode">after_transaction</property>
        <property name="show_sql">true</property>

    ...

persistanceContext.xml

<bean id="dataSource" destroy-method="close"
        class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver" />
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/cloud_app" />
        <property name="user" value="root" />
        <property name="password" value="root" />
        <property name="debugUnreturnedConnectionStackTraces" value="true" />
        <property name="unreturnedConnectionTimeout" value="20" />
        <property name="minPoolSize" value="5" />
        <property name="initialPoolSize" value="10" />
        <property name="maxPoolSize" value="50" />
        <property name="maxStatements" value="50" />
        <property name="idleConnectionTestPeriod" value="120" />
        <property name="maxIdleTime" value="1200" />
    </bean>

    <!-- Hibernate -->
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="configLocation">
            <value>classpath:hibernate.cfg.xml</value>
        </property>
        <property name="configurationClass">
            <value>org.hibernate.cfg.AnnotationConfiguration</value>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>
    </bean>

    <!-- Transaction manager -->
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
        <property name="dataSource" ref="dataSource" />
    </bean>

当我在我的应用程序sessionFactory.getCurrentSession()中使用时,它仍会抛出异常

org.hibernate.LazyInitializationException: could not initialize proxy - no Session

但是当我使用sessionFactory.openSession()时,它会解决问题,但会产生另一个问题。所以我的问题是,如何才能达到状态 - 整个应用程序的一个会话。如果我致电sessionFactory.getCurrentSession(),会话将会存在。 我很困惑,我读了很多线程如何解决它,但没有成功。

更新 当我得到一些对象然后我尝试改变它

Opportunity opportunity = opportunityDao.get(idOpportunity);
opportunity.setOrder(order);
opportunityDao.edit(opportunity);
来自get方法的

代码

public T get(Integer id) {
    T object = (T) sessionFactory.getCurrentSession().get(clazz, id);
    return object;
}
来自edit方法的

代码

public void edit(T object) {
    this.sessionFactory.getCurrentSession().update(object);
}

它引发了我org.hibernate.HibernateException: Illegal attempt to associate a collection with two open sessions

1 个答案:

答案 0 :(得分:1)

一些事情

  1. 当您在弹簧应用程序中注入hibernate.connection.*时,DataSource属性无效
  2. dialect和show_sql的其他属性已在spring配置中设置,因此简而言之(由于1和2)您可以删除hibernate.cfg.xml文件。
  3. 使用AnnotationSessionFactoryBean便利类。
  4. 离开你

    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.AnnotationSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.bytecode.use_reflection_optimize">false</prop>
            </props>
        </property>
        <property name="packagesToScan" value="your.package.with.entities.here" />
    </bean>
    

    至少可以清理您的配置(并将所有内容移动到一个文件中)。

    您遇到的问题是由于交易配置不当造成的。你有怎样的,HibernateTransactionManager但不是配置的时间/地点。我希望<tx:annotation-driven /><tx:advice /><aop:config />启用交易。

    我建议阅读Spring参考指南中的transaction chapter,以获取有关hibernate read the hibernate section的更多信息。