-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: java.io.File in die DB
PostPosted: Thu May 03, 2007 5:24 am 
Newbie

Joined: Mon Mar 26, 2007 7:50 am
Posts: 18
Hi,
ich versuche eine Datei mit hilfe von Hibernate in die Datenbank zu speichern, nur leider klappt das ganze nicht.
Nach dem Upload der Datei, verpacke ich es als java.io.File und geb's an
Hibernate weiter.... nur leider schreibt der nichts in die DB?
Wenn ich object persistent mache funktionirt alles wunderbar... nur hierbei
stellt der sich einbischen quer....

Habe ich etwas nicht bedacht? Muß man Dateien anders behandeln als
Objekte???

Danke im voraus,
Omid

Hibernate version:
3.2
Mapping documents:
Code:
<class name="main.org.jboss.portlet.milestone.spring.dto.EntryValues"
      table="entryValues">
      <id column="id" name="id">
         <generator class="increment" />
      </id>
      <property name="value" column="value" type="string" not-null="false" />
      <property name="value_bool" column="value_bool" type="boolean" not-null="false" />
      <property name="value_date" column="value_date" type="date" not-null="false" />
      <property name="value_file" column="value_file" type="java.io.File" not-null="false"/>
      <property name="dataType" column="dataType" not-null="false"
         type="main.org.jboss.portlet.milestone.spring.dto.DataType" />
      <list name="values">
         <key column="pair_id" />
         <list-index column="pair_idx" />
         <one-to-many class="main.org.jboss.portlet.milestone.spring.dto.Pair"/>
      </list>
   </class>

Full stack trace of any exception that occurs:
[code]
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - [saveEntry()] entering saveEntry, start finding EntryValues...
2007-05-03 14:48:25,140 INFO [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - File: zip.sfx[67584]seccussfully uploaded!
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - [buildEntryValues(Set column)] found item of type: fileattachment.
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] filename: zip.sfx
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] filename: zip.sfx
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - ---------------------------->zip.sfx - 67584
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.datatypes.input.Plaintext_single] - [getType()] type = plaintext_single
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - [buildEntryValues(Set column)] found item of type: plaintext_single.
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - user is null, trying to resolve username...
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.facade.FacadeService] - receiving mileStoneService...
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.service.MileStoneService] - receiving userManager...
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.security.persistance.UserManager] - Entering UserManager.isUserAuthenticated()
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.security.persistance.UserManager] - ...receiving SecurityContext
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.security.persistance.UserManager] - ...receiving UserDetails: manager
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.security.dto.User] - User.equals: manager == manager
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.security.persistance.UserManager] - return User: manager
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - got User: main.org.jboss.portlet.milestone.spring.security.dto.User@150e804
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - got User: main.org.jboss.portlet.milestone.spring.security.dto.User@150e804
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - [saveEntry()] entry created by user: manager
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.bean.NewBean] - [saveEntry()] entry with 2 items
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.jsf.facade.FacadeService] - receiving mileStoneService...
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.persistence.EntryManager] - Calling EntryManager.saveEntry
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] filename: zip.sfx
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.persistence.EntryManager] - -------FILE-------->67584
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.datatypes.input.Plaintext_single] - [getType()] type = plaintext_single
2007-05-03 14:48:25,140 DEBUG [org.hibernate.impl.SessionImpl] - opened session at timestamp: 11781839051
2007-05-03 14:48:25,140 DEBUG [org.hibernate.event.def.AbstractSaveEventListener] - generated identifier: 8, using strategy: org.hibernate.id.IncrementGenerator
2007-05-03 14:48:25,140 DEBUG [org.hibernate.event.def.AbstractSaveEventListener] - generated identifier: 15, using strategy: org.hibernate.id.IncrementGenerator
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,140 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] filename: zip.sfx
2007-05-03 14:48:25,140 DEBUG [org.hibernate.event.def.AbstractSaveEventListener] - generated identifier: 16, using strategy: org.hibernate.id.IncrementGenerator
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] no file in entryvalue.
2007-05-03 14:48:25,156 DEBUG [org.hibernate.event.def.AbstractFlushingEventListener] - processing flush-time cascades
2007-05-03 14:48:25,156 DEBUG [org.hibernate.event.def.AbstractFlushingEventListener] - dirty checking collections
2007-05-03 14:48:25,156 DEBUG [org.hibernate.engine.Collections] - Collection found: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#8], was: [<unreferenced>] (initialized)
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] filename: zip.sfx
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] no file in entryvalue.
2007-05-03 14:48:25,156 DEBUG [org.hibernate.event.def.AbstractFlushingEventListener] - Flushed: 3 insertions, 0 updates, 0 deletions to 3 objects
2007-05-03 14:48:25,156 DEBUG [org.hibernate.event.def.AbstractFlushingEventListener] - Flushed: 1 (re)creations, 0 updates, 0 removals to 1 collections
2007-05-03 14:48:25,156 DEBUG [org.hibernate.pretty.Printer] - listing entities:
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] no file in entryvalue.
2007-05-03 14:48:25,156 DEBUG [org.hibernate.pretty.Printer] - main.org.jboss.portlet.milestone.spring.dto.EntryValues{id=16, dataType=2c6d8085f3f280ccede1e9eeaeeff2e7aeeae2eff3f3aef0eff2f4ece5f4aeede9ece5f3f4efeee5aef3f0f2e9eee7aee4f4efaee4e1f4e1f4f9f0e5f3aee9eef0f5f4aed0ece1e9eef4e5f8f4dff3e9eee7ece548b23b1a4f0a1f8c828089da8090ede1eee4e1f4eff2f9dff3f4e1f4f5f3c9808aede1f8dfece5eee7f4e8c98084f3e9fae5cc808ce4e5e6e1f5ecf4d6e1ecf5e5f48092cceae1f6e1afece1eee7afd3f4f2e9eee7bbcc8082e9e4f48093cceae1f6e1afece1eee7afc9eef4e5e7e5f2bbcc8085ece1e2e5ecf180fe8081cc8084eee1ede5f180fe8081cc8084f4f9f0e5f180fe8081cc8085f6e1ecf5e5f180fe8081f8f080808080a8808080a8f48087e6e9ece5f3f3f3f3f28091eae1f6e1aeece1eee7aec9eef4e5e7e5f292622024770107b8828081c98085f6e1ecf5e5f8f28090eae1f6e1aeece1eee7aecef5ede2e5f2062c159d8b14600b828080f8f080808081f48084eee1ede5f48091f0ece1e9eef4e5f8f4dff3e9eee7ece5b0f48090f0ece1e9eef4e5f8f4dff3e9eee7ece5f0, values=null, value_file=null, value_date=null, value=filesss, value_bool=null}
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.getValue_file
2007-05-03 14:48:25,156 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - [getValue_file()] filename: zip.sfx
2007-05-03 14:48:25,156 DEBUG [org.hibernate.pretty.Printer] - main.org.jboss.portlet.milestone.spring.dto.EntryValues{id=15, dataType=2c6d8085f3f280caede1e9eeaeeff2e7aeeae2eff3f3aef0eff2f4ece5f4aeede9ece5f3f4efeee5aef3f0f2e9eee7aee4f4efaee4e1f4e1f4f9f0e5f3aee9eef0f5f4aec6e9ece5c1f4f4e1e3e8ede5eef4d196da736bd69690828087da8090ede1eee4e1f4eff2f9dff3f4e1f4f5f3cc8088e6e9ece5cee1ede5f48092cceae1f6e1afece1eee7afd3f4f2e9eee7bbcc8082e9e4f48093cceae1f6e1afece1eee7afc9eef4e5e7e5f2bbcc8085ece1e2e5ecf180fe8081cc8084eee1ede5f180fe8081cc8084f4f9f0e5f180fe8081cc808af6e1ecf5e5dfe6e9ece5f4808ecceae1f6e1afe9efafc6e9ece5bbf8f080f0f3f28091eae1f6e1aeece1eee7aec9eef4e5e7e5f292622024770107b8828081c98085f6e1ecf5e5f8f28090eae1f6e1aeece1eee7aecef5ede2e5f2062c159d8b14600b828080f8f080808082f48087e6e9ece5e2ece1f4808fe6e9ece5e1f4f4e1e3e8ede5eef4b2f4808ee6e9ece5e1f4f4e1e3e8ede5eef4f0, values=null, value_file=2c6d8085f3f2808ceae1f6e1aee9efaec6e9ece584ad24c58e8d647f838081cc8084f0e1f4e8f48092cceae1f6e1afece1eee7afd3f4f2e9eee7bbf8f0f48087fae9f0aef3e6f8f78280dcf8, value_date=null, value=null, value_bool=null}
2007-05-03 14:48:25,156 DEBUG [org.hibernate.pretty.Printer] - main.org.jboss.portlet.milestone.spring.dto.Entry{id=8, owner=main.org.jboss.portlet.milestone.spring.security.dto.User#1, entries=[main.org.jboss.portlet.milestone.spring.dto.EntryValues#15, main.org.jboss.portlet.milestone.spring.dto.EntryValues#16]}
2007-05-03 14:48:25,156 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,156 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-05-03 14:48:25,156 DEBUG [org.hibernate.SQL] - insert into entry (id) values (?)
2007-05-03 14:48:25,156 DEBUG [org.hibernate.jdbc.AbstractBatcher] - Executing batch size: 1
2007-05-03 14:48:25,234 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,234 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,234 DEBUG [org.hibernate.SQL] - insert into entryValues (value, value_bool, value_date, value_file, dataType, id) values (?, ?, ?, ?, ?, ?)
2007-05-03 14:48:25,234 DEBUG [org.hibernate.jdbc.AbstractBatcher] - reusing prepared statement
2007-05-03 14:48:25,234 DEBUG [org.hibernate.SQL] - insert into entryValues (value, value_bool, value_date, value_file, dataType, id) values (?, ?, ?, ?, ?, ?)
2007-05-03 14:48:25,234 DEBUG [org.hibernate.jdbc.AbstractBatcher] - Executing batch size: 2
2007-05-03 14:48:25,343 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,343 DEBUG [org.hibernate.persister.collection.AbstractCollectionPersister] - Inserting collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#8]
2007-05-03 14:48:25,343 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,343 DEBUG [org.hibernate.SQL] - update entryValues set entries_id=?, entries_idx=? where id=?
2007-05-03 14:48:25,343 DEBUG [org.hibernate.jdbc.AbstractBatcher] - reusing prepared statement
2007-05-03 14:48:25,343 DEBUG [org.hibernate.SQL] - update entryValues set entries_id=?, entries_idx=? where id=?
2007-05-03 14:48:25,343 DEBUG [org.hibernate.persister.collection.AbstractCollectionPersister] - done inserting collection: 2 rows inserted
2007-05-03 14:48:25,343 DEBUG [org.hibernate.jdbc.AbstractBatcher] - Executing batch size: 2
2007-05-03 14:48:25,421 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,421 DEBUG [org.hibernate.jdbc.ConnectionManager] - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
2007-05-03 14:48:25,421 DEBUG [org.hibernate.jdbc.ConnectionManager] - transaction completed on session with on_close connection release mode; be sure to close the session to release JDBC resources!
2007-05-03 14:48:25,421 DEBUG [main.org.jboss.portlet.milestone.spring.persistence.EntryManager] - [loadEntriesFromDB()] entering loadEntriesFrom db...
2007-05-03 14:48:25,421 DEBUG [org.hibernate.impl.SessionImpl] - opened session at timestamp: 11781839054
2007-05-03 14:48:25,421 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,421 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select this_.id as id0_1_, user2_.id as id2_0_, user2_.firstname as firstname2_0_, user2_.lastname as lastname2_0_, user2_.username as username2_0_, user2_.email as email2_0_, user2_.password as password2_0_, user2_.expired as expired2_0_, user2_.locked as locked2_0_, user2_.enabled as enabled2_0_, user2_.credentialsExpired as credent10_2_0_ from entry this_ left outer join user user2_ on this_.id=user2_.id
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.security.dto.User#1], EntityKey[main.org.jboss.portlet.milestone.spring.dto.Entry#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.security.dto.User#2], EntityKey[main.org.jboss.portlet.milestone.spring.dto.Entry#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.security.dto.User#3], EntityKey[main.org.jboss.portlet.milestone.spring.dto.Entry#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.security.dto.User#4], EntityKey[main.org.jboss.portlet.milestone.spring.dto.Entry#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: null, EntityKey[main.org.jboss.portlet.milestone.spring.dto.Entry#5]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: null, EntityKey[main.org.jboss.portlet.milestone.spring.dto.Entry#6]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: null, EntityKey[main.org.jboss.portlet.milestone.spring.dto.Entry#7]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: null, EntityKey[main.org.jboss.portlet.milestone.spring.dto.Entry#8]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.security.dto.User#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select authoritie0_.uid as uid1_, authoritie0_.id as id1_, authoritie0_.idx as idx1_, authoritie0_.id as id3_0_, authoritie0_.authority as authority3_0_ from accesslevel authoritie0_ where authoritie0_.uid=?
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.AccessLevel#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.security.dto.User.authorities
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.security.dto.User.authorities
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.AccessLevel#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.AccessLevel#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.security.dto.User#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.Entry#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.Entry#1]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.security.dto.User#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select authoritie0_.uid as uid1_, authoritie0_.id as id1_, authoritie0_.idx as idx1_, authoritie0_.id as id3_0_, authoritie0_.authority as authority3_0_ from accesslevel authoritie0_ where authoritie0_.uid=?
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.AccessLevel#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.security.dto.User.authorities
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.security.dto.User.authorities
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.AccessLevel#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.AccessLevel#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.security.dto.User#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.Entry#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.Entry#2]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.security.dto.User#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select authoritie0_.uid as uid1_, authoritie0_.id as id1_, authoritie0_.idx as idx1_, authoritie0_.id as id3_0_, authoritie0_.authority as authority3_0_ from accesslevel authoritie0_ where authoritie0_.uid=?
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.AccessLevel#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.security.dto.User.authorities
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.security.dto.User.authorities
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.AccessLevel#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.AccessLevel#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.security.dto.User#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.Entry#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.Entry#3]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.security.dto.User#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select authoritie0_.uid as uid1_, authoritie0_.id as id1_, authoritie0_.idx as idx1_, authoritie0_.id as id3_0_, authoritie0_.authority as authority3_0_ from accesslevel authoritie0_ where authoritie0_.uid=?
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.AccessLevel#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.security.dto.User.authorities
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.security.dto.User.authorities#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.security.dto.User.authorities
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.AccessLevel#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.AccessLevel#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.security.dto.User#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.Entry#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.Entry#4]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.Entry#5]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.Entry#5]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.Entry#6]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.Entry#6]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.Entry#7]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.Entry#7]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.Entry#8]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.Entry#8]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.StatefulPersistenceContext] - initializing non-lazy collections
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#8]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select entries0_.entries_id as entries7_1_, entries0_.id as id1_, entries0_.entries_idx as entries8_1_, entries0_.id as id1_0_, entries0_.value as value1_0_, entries0_.value_bool as value3_1_0_, entries0_.value_date as value4_1_0_, entries0_.value_file as value5_1_0_, entries0_.dataType as dataType1_0_ from entryValues entries0_ where entries0_.entries_id=?
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#8]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.EntryValues#15]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#8]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.EntryValues#16]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#8]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.EntryValues#15]
2007-05-03 14:48:25,437 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.EntryValues#15]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.EntryValues#16]
2007-05-03 14:48:25,437 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.EntryValues#16]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.Entry.entries
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#8]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.Entry.entries
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#16]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select values0_.pair_id as pair4_1_, values0_.id as id1_, values0_.pair_idx as pair5_1_, values0_.id as id11_0_, values0_.label as label11_0_, values0_.value as value11_0_ from pair values0_ where values0_.pair_id=?
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#16]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#16]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#15]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select values0_.pair_id as pair4_1_, values0_.id as id1_, values0_.pair_idx as pair5_1_, values0_.id as id11_0_, values0_.label as label11_0_, values0_.value as value11_0_ from pair values0_ where values0_.pair_id=?
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#15]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#15]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#7]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.SQL] - select entries0_.entries_id as entries7_1_, entries0_.id as id1_, entries0_.entries_idx as entries8_1_, entries0_.id as id1_0_, entries0_.value as value1_0_, entries0_.value_bool as value3_1_0_, entries0_.value_date as value4_1_0_, entries0_.value_file as value5_1_0_, entries0_.dataType as dataType1_0_ from entryValues entries0_ where entries0_.entries_id=?
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#7]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.EntryValues#13]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#7]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.EntryValues#14]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#7]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.EntryValues#13]
2007-05-03 14:48:25,437 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.EntryValues#13]
2007-05-03 14:48:25,437 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.EntryValues#14]
2007-05-03 14:48:25,437 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.EntryValues#14]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.Entry.entries
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#7]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.Entry.entries
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#14]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.SQL] - select values0_.pair_id as pair4_1_, values0_.id as id1_, values0_.pair_idx as pair5_1_, values0_.id as id11_0_, values0_.label as label11_0_, values0_.value as value11_0_ from pair values0_ where values0_.pair_id=?
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#14]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#14]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#13]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.SQL] - select values0_.pair_id as pair4_1_, values0_.id as id1_, values0_.pair_idx as pair5_1_, values0_.id as id11_0_, values0_.label as label11_0_, values0_.value as value11_0_ from pair values0_ where values0_.pair_id=?
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#13]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#13]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#6]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.SQL] - select entries0_.entries_id as entries7_1_, entries0_.id as id1_, entries0_.entries_idx as entries8_1_, entries0_.id as id1_0_, entries0_.value as value1_0_, entries0_.value_bool as value3_1_0_, entries0_.value_date as value4_1_0_, entries0_.value_file as value5_1_0_, entries0_.dataType as dataType1_0_ from entryValues entries0_ where entries0_.entries_id=?
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#6]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.EntryValues#11]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#6]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.EntryValues#12]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#6]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.EntryValues#11]
2007-05-03 14:48:25,453 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.EntryValues#11]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.EntryValues#12]
2007-05-03 14:48:25,453 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.EntryValues#12]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.Entry.entries
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#6]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.Entry.entries
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#12]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.SQL] - select values0_.pair_id as pair4_1_, values0_.id as id1_, values0_.pair_idx as pair5_1_, values0_.id as id11_0_, values0_.label as label11_0_, values0_.value as value11_0_ from pair values0_ where values0_.pair_id=?
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#12]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#12]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#11]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.SQL] - select values0_.pair_id as pair4_1_, values0_.id as id1_, values0_.pair_idx as pair5_1_, values0_.id as id11_0_, values0_.label as label11_0_, values0_.value as value11_0_ from pair values0_ where values0_.pair_id=?
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#11]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#11]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#5]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.SQL] - select entries0_.entries_id as entries7_1_, entries0_.id as id1_, entries0_.entries_idx as entries8_1_, entries0_.id as id1_0_, entries0_.value as value1_0_, entries0_.value_bool as value3_1_0_, entries0_.value_date as value4_1_0_, entries0_.value_file as value5_1_0_, entries0_.dataType as dataType1_0_ from entryValues entries0_ where entries0_.entries_id=?
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#5]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.EntryValues#9]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#5]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[main.org.jboss.portlet.milestone.spring.dto.EntryValues#10]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - found row of collection: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#5]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.EntryValues#9]
2007-05-03 14:48:25,453 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.EntryValues#9]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [main.org.jboss.portlet.milestone.spring.dto.EntryValues#10]
2007-05-03 14:48:25,453 DEBUG [main.org.jboss.portlet.milestone.spring.dto.EntryValues] - Entering EntryValues.setValue_file
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [main.org.jboss.portlet.milestone.spring.dto.EntryValues#10]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.Entry.entries
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.Entry.entries#5]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.Entry.entries
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#10]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.SQL] - select values0_.pair_id as pair4_1_, values0_.id as id1_, values0_.pair_idx as pair5_1_, values0_.id as id11_0_, values0_.label as label11_0_, values0_.value as value11_0_ from pair values0_ where values0_.pair_id=?
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#10]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#10]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: main.org.jboss.portlet.milestone.spring.dto.EntryValues.values
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - done loading collection
2007-05-03 14:48:25,453 DEBUG [org.hibernate.loader.Loader] - loading collection: [main.org.jboss.portlet.milestone.spring.dto.EntryValues.values#9]
2007-05-03 14:48:25,453 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-05-03 14:48:25,453 DEBUG [org.hibernate.SQL] - select values0_.pair_id as pair4_1_, values0_.id as id1_, values0_.pair_idx as pair5_1_, values0_.id as id11_0_, values0_.label as label11_0_, values0_.value as value11_0_ from pair values0_ where values0_.pair_id=?
2007-05-03 14:48


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.