我目前使用spring进行依赖注入。 Hibernate使用postgres方言进行正常运行,但我想将HSQL用于DBUnitils Databank-Testing。
我的 Spring-Configuration 包含以下内容:
<!-- Hibernate session factory -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
<prop key="use_outer_join">${hibernate.use_outer_join}</prop>
<prop key="hibernate.cache.use_second_level_cache">${hibernate.cache.use_second_level_cache}</prop>
<prop key="hibernate.cache.use_query_cache">${hibernate.cache.use_query_cache}</prop>
<prop key="hibernate.cache.provider_class">${hibernate.cache.provider}</prop>
<prop key="hibernate.connection.pool_size">10</prop>
<prop key="hibernate.jdbc.batch_size">1000</prop>
<prop key="hibernate.bytecode.use_reflection_optimizer">true</prop>
</props>
</property>
<property name="annotatedClasses">
<list>
<value>de.dbruhn.relations.model.Relation</value>
<value>de.dbruhn.relations.model.RelationData</value>
<value>de.dbruhn.relations.model.RObject</value>
<value>de.dbruhn.relations.model.Type</value>
</list>
</property>
<property name="schemaUpdate" value="${hibernate.schemaUpdate}"/>
</bean>
字段被maven资源过滤替换。
DBUnitils的Spring-Configruation包含:
<bean id="dataSource" class="org.unitils.database.UnitilsDataSourceFactoryBean"/>
</beans>
因此使用UnitilsDataSource覆盖我的运行配置中的dataSource。
问题:我无法使用Postgres-Dialect对HSQL-Test-Database运行测试,因为某些命令不起作用。 我想到的唯一解决方案:在maven中切换资源过滤器,但我必须手动完成(通过在每次maven调用时提供“-P TEST”)。那么是否有可能覆盖hibernate.dialect?
谢谢!
答案 0 :(得分:4)
你通常根本不需要指定方言,Hibernate会通过查看底层数据源来弄明白。如果要强制Hibernate使用特定的方法,则只需指定方言。
在你的情况下,你应该只能完全删除dialect属性,它应该在postgres和hsql中工作而不需要修改配置。
答案 1 :(得分:0)
您可能应该在spring中使用PropertyPlaceHolderConfigurer来更改配置。这样你只需要为不同的环境提供不同的配置文件,spring xml保持不变。
您可以加载配置文件,如this。