Hello,
how can I configure the default_batch_fetch_size for Hibernate integrated in Spring. I use already this:
Code:
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect
</prop>
<prop key="default_batch_fetch_size">11</prop>
</props>
</property>
</bean>
But there are no effects. How can I check the effectiveness of my configuration?