vote up 1 vote down star
1

Hibernate is continuing to spew SQL traces to stdout, and I can't figure out how to change a Hibernate configuration property when it's hidden behind a JPA adapter. This is the Spring bean for the entityManagerFactory:

<bean id="entityManagerFactory" 
    class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="dataSource" ref="ssapDataSource"/>
    <property name="jpaVendorAdapter">
        <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" >
            <property name="showSql" value="false"/>
        </bean>
    </property>
</bean>

Even with the showSql property set to false, Hibernate keeps printing SQL.

I've tried making a hibernate.properties file in my classpath with "hibernate.show_sql=false", but it didn't pick that up either.

flag

78% accept rate
I also tried setting a system property: hibernate.show_sql=false. Still no joy. It insists on spewing SQL statements. – Mojo Mar 26 at 21:27
How about specifying <property name="hibernate.show_sql" value="false"/> ? – skaffman Apr 17 at 15:33
I'm pretty sure that Hibernate doesn't do this by default, so I suspect that somewhere else in your environment you have something that has turned showSql on, and this is taking precedence over your attempts to turn it off. – skaffman Apr 17 at 15:34

4 Answers

vote up 0 vote down check

Try setting it in persistance.xml

<persistence>
  <persistence-unit name="PU">
    <properties>
      <property name="hibernate.show_sql" value="false"/>
    </properties>
  </persistence-unit>
</persistence>
link|flag
The turns out to be exactly the issue. My "platform" library jar included a persistence.xml file that turns on show_sql, and isn't overridden at run time or Spring wire-up time. – Mojo Aug 19 at 20:12
vote up 1 vote down

As far as I know, Hibernate will also log SQL statements if logging for org.hibernate.SQL happens at DEBUG or ALL level, so you could try disabling that (for example with log4j.logger.org.hibernate.SQL=info when using Log4J).

link|flag
Thanks, unfortunately I already have org.hibernate.SQL logging set to ERROR in log4j. :( – Mojo Mar 26 at 21:15
vote up 0 vote down

If you are using spring make sure that you don't have the showSql property set to true

I was doing this myself

<bean id="vendorAdapter" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
    <property name="showSql" value="false"/>
</bean>
link|flag
vote up 0 vote down

Mojo,

I have the same issue. Were you able to figure this out?

Thanks,

link|flag
No, I never solved the issue. Just gave up in this instance. – Mojo Jun 9 at 16:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.