Remove Hibernate debug details from tests

This commit is contained in:
Mahmoud Ben Hassine
2023-06-07 15:24:44 +02:00
parent 98c426ca4f
commit 27e2ab02c0

View File

@@ -6,14 +6,6 @@
<bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mappingLocations" value="classpath*:/org/springframework/batch/sample/domain/**/*.hbm.xml" />
<property name="hibernateProperties">
<value>
<![CDATA[
hibernate.show_sql=true
hibernate.format_sql=true
]]>
</value>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager" lazy-init="true">