2 Replies Latest reply on Oct 12, 2007 6:58 PM by claprun

    WARN  [LoadContexts] ?

    remi_dong

      Hi,
      I have the WARN when i show the page portal:
      -----------------------------------------------------------------------------
      19:08:03,203 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@18188d<rs=com.mysql.jdbc.ResultSet@1ed2ef2>
      19:08:03,203 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@1f3e277<rs=com.mysql.jdbc.ResultSet@da77c1>
      19:08:16,781 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@5adb45<rs=com.mysql.jdbc.ResultSet@e9f104>
      19:08:16,906 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@1052d84<rs=com.mysql.jdbc.ResultSet@d2343d>
      19:08:17,031 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@f74da2<rs=com.mysql.jdbc.ResultSet@1e04ebb>
      19:08:27,453 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@e9feff<rs=com.mysql.jdbc.ResultSet@67107>
      19:08:27,453 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@642005<rs=com.mysql.jdbc.ResultSet@11f2184>
      19:08:35,562 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@1d85fd0<rs=com.mysql.jdbc.ResultSet@a465a3>
      19:08:35,562 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@7a86f9<rs=com.mysql.jdbc.ResultSet@10b7627>
      19:08:39,796 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@94e31d<rs=com.mysql.jdbc.ResultSet@d464da>
      19:08:39,812 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@cab467<rs=com.mysql.jdbc.ResultSet@1e1e9d0>
      19:08:44,781 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@c870d6<rs=com.mysql.jdbc.ResultSet@ce315a>
      19:08:44,781 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@16813da<rs=com.mysql.jdbc.ResultSet@1641d58>
      ------------------------------------------------------------------------
      How i can do for resoluble this problme? Thanks.

        • 1. Re: WARN  [LoadContexts] ?
          remi_dong

           

          "remi_dong" wrote:
          Hi,
          I have the WARN when i show the page portal:
          -----------------------------------------------------------------------------
          19:08:03,203 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@18188d<rs=com.mysql.jdbc.ResultSet@1ed2ef2>
          19:08:03,203 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@1f3e277<rs=com.mysql.jdbc.ResultSet@da77c1>
          19:08:16,781 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@5adb45<rs=com.mysql.jdbc.ResultSet@e9f104>
          19:08:16,906 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@1052d84<rs=com.mysql.jdbc.ResultSet@d2343d>
          19:08:17,031 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@f74da2<rs=com.mysql.jdbc.ResultSet@1e04ebb>
          19:08:27,453 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@e9feff<rs=com.mysql.jdbc.ResultSet@67107>
          19:08:27,453 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@642005<rs=com.mysql.jdbc.ResultSet@11f2184>
          19:08:35,562 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@1d85fd0<rs=com.mysql.jdbc.ResultSet@a465a3>
          19:08:35,562 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@7a86f9<rs=com.mysql.jdbc.ResultSet@10b7627>
          19:08:39,796 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@94e31d<rs=com.mysql.jdbc.ResultSet@d464da>
          19:08:39,812 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@cab467<rs=com.mysql.jdbc.ResultSet@1e1e9d0>
          19:08:44,781 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@c870d6<rs=com.mysql.jdbc.ResultSet@ce315a>
          19:08:44,781 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@16813da<rs=com.mysql.jdbc.ResultSet@1641d58>
          ------------------------------------------------------------------------
          How i can do for resoluble this problme?
          I'am run in mode clustering.
          Thanks.


          • 2. Re: WARN  [LoadContexts] ?
            claprun

            These are just warnings issued by Hibernate. You can safely ignore them (they should be removed from newer version of Hibernate). See:
            http://opensource.atlassian.com/projects/hibernate/browse/HHH-2795
            If you don't want to see them anymore, please edit the jboss-log4j.xml file in your AS configuration conf directory:

            <!-- Hibernate got a bit too verbose in JBoss AS 4.2.1.GA -->
             <category name="org.hibernate.engine.loading.LoadContexts">
             <priority value="ERROR"/>
             </category>
            
             <!-- JBoss Cache likes to talk a lot -->
             <category name="org.jboss.cache.interceptors.CacheLoaderInterceptor">
             <priority value="ERROR"/>
             </category>