Simples Assim

How to Turn Off SQL Output in Hibernate 3.3

leave a comment »

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory name="java:hibernate/SessionFactory">
        <property name="show_sql">false</property>
        ...
    </session-factory>
</hibernate-configuration>

http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html


Written by Fernando Ribeiro

November 24, 2009 at 2:29 pm

Posted in Software

Leave a Reply