1
我有簡單的Spring MVC - Hibernate應用程序,在連接到MySQL 5.5數據庫時工作正常(插入&讀取數據)。在將相同的應用程序連接到Oracle 10g時,它從數據庫中讀取記錄,但無法插入記錄。休眠會話模式默認設置爲手動
在調試時,我發現會話的flushMode是MANUAL。保存記錄後,我明確寫了session.flush(),並且代碼在兩個數據庫中都開始正常工作。
我的問題 - 當我從休眠的documentation理解,默認刷新模式爲自動。我沒有在我的代碼中將它設置爲手動,但不知何故它已經設置好了。如何控制這個?
我使用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>
請讓我知道,如果需要更多的細節。
謝謝。