Hibernate会话模式默认设置为Manual

时间:2013-03-04 12:37:37

标签: hibernate spring-mvc hibernate-session

我有简单的Spring MVC - Hibernate应用程序,在连接到MySQL 5.5数据库时工作正常(插入和读取数据)。在将同一个应用程序连接到Oracle 10g时,它会从数据库中读取记录,但无法插入记录。

在调试时,我发现会话的flushMode是MANUAL。我在保存记录后明确写了session.flush(),代码开始在两个数据库中正常工作。

我的问题 - 据我所知,Hibernate的documentation,默认刷新模式为AUTO。我没有在我的代码中将其设置为手动,但不知何故它已经设置。如何控制?

我正在使用Spring 3.1.1和Hibernate 3.5.6。下面是我的root-context.xml和servlet-context.xml文件。

servlet的context.xml中:

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
    <property name="prefix" value="/WEB-INF/views/"/>
    <property name="suffix" value=".jsp"/>
</bean>

<context:component-scan base-package="com.home.cfs"/>

<mvc:annotation-driven/>

根context.xml中:

<bean id="databaseDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
    <!-- 
    <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="url" value="jdbc:oracle:thin:@localhost:1521:testdb"/>
    <property name="username" value="test_usr"/>
    <property name="password" value="test_usr"/>
     -->

    <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
    <property name="url" value="jdbc:mysql://localhost:3306/person"/>
    <property name="username" value="root"/>
    <property name="password" value="admin"/> 

</bean>

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="databaseDataSource"/>
    <property name="packagesToScan" value="com.home.cfs"/>
    <property name="configurationClass" value="org.hibernate.cfg.AnnotationConfiguration"/>
    <property name="hibernateProperties">
        <props>
            <!-- <prop key="hibernate.dialect">org.hibernate.dialect.OracleDialect</prop> -->
            <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</prop>
            <prop key="hibernate.show_sql">true</prop>
            <prop key="hibernate.format_sql">true</prop>
            <prop key="hibernate.use_sql_comments">true</prop>
            <prop key="hibernate.hbm2ddl.auto">update</prop>
        </props>
    </property>
</bean>

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

如果需要更多详细信息,请与我们联系。

感谢。

1 个答案:

答案 0 :(得分:0)

检查您是否已打开OpenSessionInViewFilter过滤器。这似乎是一个可能的罪魁祸首。