我了解 Hibernate 的 Session.flush() 方法将内存中的当前数据状态写入数据库。我使用它,它工作正常。但我的问题是:使用 Session.flush() 是强制性的吗?
如果我删除 Session.flush() 则不会在数据库中插入/更新任何内容。而且我在我的日志文件中看不到任何错误。
我在我的应用程序中使用 Spring + Hibernate。我还使用了我在 web.xml 中定义的 OpenSessionInViewFilter,如下所示:
<filter>
<filter-name>hibernateFilter</filter-name>
<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
<init-param>
<param-name>flushMode</param-name>
<param-value>AUTO</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>hibernateFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
我曾尝试使用 flushMode 作为 COMMIT 但它仍然没有帮助。
我的 Spring applicationContext.xml 具有以下数据源行:
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="${jdbc.jndiName}" />
<property name="resourceRef" value="true" />
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
</props>
</property>
<property name="annotatedClasses">
<list>
<value>...</value>
</list>
</property>
</bean>
最后我的代码片段如下所示:
public String saveRegistration (final Registration registration) {
getHibernateTemplate().saveOrUpdate(registration);
getSession().flush(); // If I remove this, no records would be inserted/updated!!
String id = registration.getId();
return id;
}
如您所见,我在 Spring 和 Hibernate 中使用了非常基本的配置。
有人可以帮助我理解为什么应该调用 getSession.flush() 吗?为什么没有它没有记录在数据库中保存/更新?