[jboss-as7-dev] hibernate log barf

Ales Justin ales.justin at gmail.com
Thu May 19 04:35:05 EDT 2011


This is my persistence.xml

    <persistence-unit name="radar" transaction-type="JTA">
		<provider>org.hibernate.ejb.HibernatePersistence</provider>
		<jta-data-source>java:/H2DS</jta-data-source>
        <!-- entities -->
        <class>org.jboss.lhotse.server.api.domain.AbstractEntity</class>
        <class>org.jboss.lhotse.server.api.domain.TimestampedEntity</class>
        <class>org.jboss.lhotse.server.api.domain.GeoPt</class>
        <class>org.jboss.lhotse.server.api.domain.Version</class>
        <class>com.alterjoc.radar.server.domain.AuditLog</class>
        <exclude-unlisted-classes>true</exclude-unlisted-classes>
        <properties>
            <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>
            <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
            <property name="hibernate.show_sql" value="false"/>
            <property name="hibernate.format_sql" value="true"/>
        </properties>
    </persistence-unit>

when running / testing app in latest AS7, Hibernate barfs a ton of INFO / WARN:
* http://pastebin.com/iJCahSFi

It looks like things do work, but definitely something I as a user don't like to see.

-Ales




More information about the jboss-as7-dev mailing list