Hallo Leute,
sitze jetzt seit einpaar Tagen an der Konfiguration von Hibernate, Spring, MyFaces. Zur Zeit hängt das ganze an Hibernate...
Es handelt sich um ein portlet...
Ich benutze Hibernate-3.2, Spring-2.0.2
milestone.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>
<!-- load milestone.properties -->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="/WEB-INF/context/portlet/milestone.properties"/>
</bean>
<!-- Resolve Logical View Names to actual JSP Files -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="cache" value="false" />
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="WEB-INF/jsp"/>
<property name="suffix" value=".jsp"/>
</bean>
<!-- Controller -->
<bean id="mileStoneListController" class="main.org.jboss.portlet.milestonebeta.controller.MileStoneListController">
<property name="mileStoneService" ref="mileStoneService"/>
</bean>
<bean id="mileStoneDetailsController" class="main.org.jboss.portlet.milestonebeta.controller.MileStoneDetailsController">
<property name="mileStoneService" ref="mileStoneService"/>
</bean>
<bean id="mileStoneDeleteController" class="main.org.jboss.portlet.milestonebeta.controller.MileStoneDeleteController">
<property name="mileStoneService" ref="mileStoneService"/>
</bean>
<bean id="mileStoneEditFormValidator" class="main.org.jboss.portlet.milestonebeta.command.validator.MileStoneEditFormValidator"/>
<bean id="mileStoneEditController" class="main.org.jboss.portlet.milestonebeta.controller.MileStoneEditController">
<property name="mileStoneService" ref="mileStoneService"/>
<property name="validator" ref="mileStoneEditFormValidator"/>
<property name="commandName" ref="mileStoneForm"/>
<property name="commandClass" ref="main.org.jboss.portlet.milestonebeta.command.MileStoneEditForm"/>
<property name="formView" ref="view/edit"/>
</bean>
<bean id="mileStoneSearchController" class="main.org.jboss.portlet.milestonebeta.controller.MileStoneSearchController">
<property name="mileStoneSearchService" ref="mileStoneSearchService"/>
<property name="commandName" value="searchForm"/>
<property name="commandClass" value="main.org.jboss.portlet.milestonebeta.command.MileStoneSearchForm"/>
<property name="formView" value="view/search"/>
<property name="successView" value="view/search"/>
</bean>
<bean id="mileStonePickController" class="main.org.jboss.portlet.milestonebeta.controller.MileStonePickController">
<property name="mileStoneService" ref="mileStoneService"/>
</bean>
<bean id="mileStonePropertiesFormValidator" class="main.org.jboss.portlet.milestonebeta.command.validator.MileStonePropertiesFormValidator"/>
<bean id="mileStonePropertiesController" class="main.org.jboss.portlet.milestonebeta.controller.MileStonePropertiesController">
<property name="mileStoneService" ref="mileStoneService"/>
<property name="validator" ref="mileStonePropertiesFormValidator"/>
<property name="commandName" ref="propertiesForm"/>
<property name="commandClass" ref="main.org.jboss.portlet.milestonebeta.command.MileStonePropertiesForm"/>
<property name="formView" ref="edit/properties"/>
</bean>
<!-- Service: Accessing ... -->
<bean id="mileStoneService" class="main.org.jboss.portlet.milestonebeta.service.MileStoneService">
<property name="portletPropertyManager" ref="portletPropertyDao"/>
<property name="entryManager" ref="entryDao"/>
<!--<property name="userService" ref="userService"/>-->
</bean>
<bean id="mileStoneSearchService" class="main.org.jboss.portlet.milestonebeta.service.MileStoneSearchService">
<property name="entryManager" ref="entryDao"/>
</bean>
<!-- Handler -->
<bean id="portletModeHandlerMapping" class="org.springframework.web.portlet.handler.PortletModeHandlerMapping">
<property name="portletModeMap">
<map>
<entry key="view" value-ref="mileStoneListController"/>
</map>
</property>
</bean>
<bean id="portletModeParameterHandlerMapping" class="org.springframework.web.portlet.handler.PortletModeParameterHandlerMapping">
<property name="portletModeParameterMap">
<map>
<entry key="view">
<map>
<entry key="pickMileStone"><ref bean="mileStonePickController"/></entry>
<!--<entry key="showResult"><ref bean="resultController"/></entry>-->
</map>
</entry>
</map>
</property>
</bean>
<!-- AutoProxyCreator, automatically creates AOP Proxies at runtime -->
<bean id="autoProxyCreator" class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator">
<property name="proxyTargetClass" value="true"/>
</bean>
<!-- DAOs -->
<bean id="accessLevelDao" class="main.org.jboss.portlet.milestonebeta.persistence.AccessLevelManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="dataTypeDao" class="main.org.jboss.portlet.milestonebeta.persistence.DataTypeManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="entryDao" class="main.org.jboss.portlet.milestonebeta.persistence.EntryManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="viewDao" class="main.org.jboss.portlet.milestonebeta.persistence.ViewManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="portletPropertyDao" class="main.org.jboss.portlet.milestonebeta.persistence.PortletPropertyManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<!-- JDBC Datasource -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${database.drvr}"/>
<property name="url" value="${database.conn}"/>
<property name="username" value="${database.user}"/>
<property name="password" value="${database.pass}"/>
</bean>
<!-- <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" destroy-method="destroy">-->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="/WEB-INF/hibernate.cfg.xml"/>
<!--<property name="annotatedClasses">
<list>
<value>main.org.jboss.portlet.milestonebeta.dto.AccessLevel</value>
<value>main.org.jboss.portlet.milestonebeta.dto.DataType</value>
<value>main.org.jboss.portlet.milestonebeta.dto.GenericEntry</value>
<value>main.org.jboss.portlet.milestonebeta.dto.PortletProperty</value>
<value>main.org.jboss.portlet.milestonebeta.dto.View</value>
</list>
</property>-->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
<prop key="hibernate.jdbc.use_scrollable_resultset">${hibernate.jdbc.use_scrollable_resultset}</prop>
<prop key="hibernate.cache.use_query_cache">${hibernate.cache.use_query_cache}</prop>
</props>
</property>
</bean>
<!-- HIBERNATE -->
<bean id="openSessionInViewInteceptor" class="org.springframework.orm.hibernate3.support.PortletOpenSessionInViewInterceptor">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
</beans>
Ein Klasse die abgebildet werden soll:
public class GenericEntry implements Entry, Serializable{
private static final long serialVersionUID = 1497749976048079696L;
private Integer id;
private String name;
private String description;
private Date creationDate;
private Date lastModified;
private User user; // muß in Type User umgeschrieben werden.
private int priority;
public Date getCreationDate() {
return creationDate;
}
public void setCreationDate(Date creationDate) {
this.creationDate = creationDate;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Date getLastModified() {
return lastModified;
}
public void setLastModified(Date lastModified) {
this.lastModified = lastModified;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPriority() {
return priority;
}
public void setPriority(int priority) {
this.priority = priority;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
}
DAO:
public class EntryManager extends HibernateDaoSupport {
static Logger logger = Logger.getLogger(EntryManager.class);
private List<Entry> entrySet;
/**
* Getter Method for the entrySet List Object
* @return returns a List of Entrys
*/
public List<Entry> getEntrySet() {
return entrySet;
}
/**
* Setter Method for the entrySet List Object
* @param entrySet a list ob entrys
*/
private void setEntrySet(List<Entry> entrySet) {
this.entrySet = entrySet;
}
/**
* Creates a new Entry with the given parameters.
* @param name (String) Name of the entry.
* @param desc (String) Description of the entry.
* @param priority (Integer) Priority of the Entry (low, mid, high)
* @param user (User) User...
* @return returns true if new entry is succesfully created, false if not
*/
public Boolean newEntry(String name, String desc, Integer priority,
User user) {
// Overload a contructor for... it's better ;)
Entry entry = new GenericEntry();
((GenericEntry) entry).setName(name);
((GenericEntry) entry).setDescription(desc);
((GenericEntry) entry).setPriority(priority);
((GenericEntry) entry).setCreationDate(new Date());
((GenericEntry) entry).setLastModified(new Date());
((GenericEntry) entry).setUser(user);
try {
getHibernateTemplate().save(entry);
} catch (DataAccessException dae) {
logger.fatal(dae.getMessage());
return false;
}
return true;
}
/**
* Method for deleting an Entry by Id
* @param id (Integer) Identification number
* @return returns true id the entry is succesfully deleted
*/
public Boolean deleteEntry(Integer id) {
try {
getHibernateTemplate().delete((GenericEntry)loadEntryById(id));
} catch (DataAccessException dae) {
logger.fatal(dae.getMessage());
return false;
}
return true;
}
/**
* Method for deleting an Entry by Entry Object
* @param entry (Entry) Entry Object
* @return returns true id the entry is succesfully deleted
*/
public Boolean deleteEntry(Entry entry) {
try{
getHibernateTemplate().delete((GenericEntry)entry);
} catch(Exception e){
logger.fatal(e.getMessage());
return false;
}
return true;
}
/**
* Method that loads all Entries from Database
* @return returns true if entries are loaded, false if not.
*/
public Boolean loadEntriesFromDB() {
try{
entrySet = getHibernateTemplate().loadAll(GenericEntry.class);
return true;
} catch (Exception e){
logger.fatal(e.getMessage());
return false;
}
}
/**
* Method that can edit an Entry
* @param entry Entry that will be override
* @return returns true if entry is successfully updated, false if not
*/
public Boolean editEntry(Entry entry) {
try {
getHibernateTemplate().update((GenericEntry)entry);
return true;
} catch (Exception e) {
logger.fatal(e.getMessage());
return false;
}
}
/**
* Method that loads an Entry by a given Id
* @param id (Integer) Identification number
* @return reutrns a Entry found by Id else null
*/
public Entry loadEntryById(Integer id){
try {
return (Entry)getHibernateTemplate().load(GenericEntry.class, id);
} catch (Exception dae) {
logger.fatal(dae.getMessage());
return null;
}
}
// search methods
public Collection<Entry> findByName(String query) {
// TODO Auto-generated method stub
return null;
}
public Collection<Entry> findByDescription(String query) {
// TODO Auto-generated method stub
return null;
}
public Collection<Entry> findByAuthor(String query) {
// TODO Auto-generated method stub
return null;
}
public Collection<Entry> findByLastModified(String query) {
// TODO Auto-generated method stub
return null;
}
public Collection<Entry> findByCreationDate(String query) {
// TODO Auto-generated method stub
return null;
}
public Collection<Entry> findByPriority(String query) {
// TODO Auto-generated method stub
return null;
}
}
JBoss output:
2007-03-26 17:10:53,609 INFO [org.apache.myfaces.config.FacesConfigurator] - Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
2007-03-26 17:10:53,859 INFO [org.apache.myfaces.config.FacesConfigurator] - Reading config jar:file:/C:/jboss-4.0.4.GA/server/default/lib/tomahawk-1.1.3.jar!/META-INF/faces-config.xml
2007-03-26 17:10:53,906 INFO [org.apache.myfaces.config.FacesConfigurator] - Reading config jar:file:/C:/jboss-4.0.4.GA/server/default/tmp/deploy/tmp5233jsf-facelets.jar!/META-INF/faces-config.xml
2007-03-26 17:10:53,953 INFO [org.apache.myfaces.config.FacesConfigurator] - Reading config jar:file:/C:/jboss-4.0.4.GA/server/default/tmp/deploy/tmp5250tomahawk.jar!/META-INF/faces-config.xml
2007-03-26 17:10:54,000 INFO [org.apache.myfaces.config.FacesConfigurator] - Reading config jar:file:/C:/jboss-4.0.4.GA/server/default/tmp/deploy/tmp5325MileStoneBeta2-exp.war/WEB-INF/lib/tomahawk-1.1.3.jar!/META-INF/faces-config.xml
2007-03-26 17:10:54,046 INFO [org.apache.myfaces.config.FacesConfigurator] - Reading config /WEB-INF/faces-config.xml
2007-03-26 17:10:54,062 ERROR [org.apache.myfaces.util.LocaleUtils] - Locale name null or empty, ignoring
2007-03-26 17:10:54,484 INFO [org.apache.myfaces.webapp.StartupServletContextListener] - ServletContext 'C:\jboss-4.0.4.GA\server\default\.\tmp\deploy\tmp5325MileStoneBeta2-exp.war\' initialized.
2007-03-26 17:10:54,484 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/MileStoneBeta2]] - Loading Spring root WebApplicationContext
2007-03-26 17:10:54,734 DEBUG [org.hibernate.jdbc.JDBCContext] - successfully registered Synchronization
2007-03-26 17:10:54,734 DEBUG [org.hibernate.impl.SessionImpl] - opened session at timestamp: 4812428307390464
2007-03-26 17:10:54,734 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNode#3
2007-03-26 17:10:54,734 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNode#3 is null
2007-03-26 17:10:54,734 DEBUG [org.hibernate.loader.Loader] - loading entity: [org.jboss.portal.core.impl.model.portal.ObjectNode#3]
2007-03-26 17:10:54,734 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-03-26 17:10:54,734 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-03-26 17:10:54,734 DEBUG [org.hibernate.SQL] - select objectnode0_.PK as PK19_1_, objectnode0_.PATH as PATH19_1_, objectnode0_.NAME as NAME19_1_, objectnode0_.PARENT_KEY as PARENT4_19_1_, securityco1_.NODE_KEY as NODE3_3_, securityco1_.PK as PK3_, securityco1_.ROLE as ROLE3_, securityco1_.PK as PK28_0_, securityco1_.ROLE as ROLE28_0_, securityco1_.NODE_KEY as NODE3_28_0_, actions2_.PK as PK4_, actions2_.ACTIONS as ACTIONS4_ from JBP_OBJECT_NODE objectnode0_ left outer join JBP_OBJECT_NODE_SEC securityco1_ on objectnode0_.PK=securityco1_.NODE_KEY left outer join JBP_OBJECT_NODE_SEC_ACTIONS actions2_ on securityco1_.PK=actions2_.PK where objectnode0_.PK=?
2007-03-26 17:10:55,656 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-03-26 17:10:55,656 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint#2], EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#3]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#3]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#2]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-03-26 17:10:55,656 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-03-26 17:10:55,656 DEBUG [org.hibernate.jdbc.ConnectionManager] - aggressively releasing JDBC connection
2007-03-26 17:10:55,656 DEBUG [org.hibernate.jdbc.ConnectionManager] - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint#2]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint#2]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint#2
2007-03-26 17:10:55,656 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint#2 is null
2007-03-26 17:10:55,656 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint#2]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.ObjectNode#3]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#3
2007-03-26 17:10:55,656 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#3 is null
2007-03-26 17:10:55,656 DEBUG [org.hibernate.loader.Loader] - loading entity: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl#3]
2007-03-26 17:10:55,656 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-03-26 17:10:55,656 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-03-26 17:10:55,671 DEBUG [org.hibernate.SQL] - select portalobje0_.PK as PK20_0_, portalobje0_.LISTENER as LISTENER20_0_, portalobje0_4_.INSTANCE_REF as INSTANCE2_27_0_, case when portalobje0_1_.PK is not null then 1 when portalobje0_2_.PK is not null then 2 when portalobje0_3_.PK is not null then 3 when portalobje0_4_.PK is not null then 4 when portalobje0_.PK is not null then 0 end as clazz_0_, declaredpr1_.OBJECT_KEY as OBJECT1_2_, declaredpr1_.jbp_VALUE as jbp2_2_, declaredpr1_.NAME as NAME2_, modes2_.PK as PK3_, modes2_.name as name3_, windowstat3_.PK as PK4_, windowstat3_.name as name4_ from JBP_PORTAL_OBJECT portalobje0_ left outer join JBP_CONTEXT portalobje0_1_ on portalobje0_.PK=portalobje0_1_.PK left outer join JBP_PORTAL portalobje0_2_ on portalobje0_.PK=portalobje0_2_.PK left outer join JBP_PAGE portalobje0_3_ on portalobje0_.PK=portalobje0_3_.PK left outer join JBP_WINDOW portalobje0_4_ on portalobje0_.PK=portalobje0_4_.PK left outer join JBP_PORTAL_OBJECT_PROPS declaredpr1_ on portalobje0_.PK=declaredpr1_.OBJECT_KEY left outer join JBP_PORTAL_MODE modes2_ on portalobje0_.PK=modes2_.PK left outer join JBP_PORTAL_WINDOW_STATE windowstat3_ on portalobje0_.PK=windowstat3_.PK where portalobje0_.PK=?
2007-03-26 17:10:56,000 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-03-26 17:10:56,000 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-03-26 17:10:56,000 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-03-26 17:10:56,000 DEBUG [org.hibernate.jdbc.ConnectionManager] - aggressively releasing JDBC connection
2007-03-26 17:10:56,000 DEBUG [org.hibernate.jdbc.ConnectionManager] - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.PageImpl#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.PageImpl#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#3
2007-03-26 17:10:56,000 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#3 is null
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.PageImpl#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#3
2007-03-26 17:10:56,000 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#3 is null
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalImpl.modes
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalImpl.modes#3
2007-03-26 17:10:56,000 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalImpl.modes#3 is null
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalImpl.modes
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#3
2007-03-26 17:10:56,000 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#3 is null
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#3]
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates
2007-03-26 17:10:56,000 DEBUG [org.hibernate.loader.Loader] - done entity load
2007-03-26 17:10:56,000 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.ObjectNode#3]
2007-03-26 17:10:56,015 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNode#3
2007-03-26 17:10:56,015 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNode#3 is null
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.ObjectNode#3]
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#3]
2007-03-26 17:10:56,015 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#3
2007-03-26 17:10:56,015 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#3 is null
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#3]
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#2]
2007-03-26 17:10:56,015 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#2
2007-03-26 17:10:56,015 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#2 is null
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#2]
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions
2007-03-26 17:10:56,015 DEBUG [org.hibernate.engine.StatefulPersistenceContext] - initializing non-lazy collections
2007-03-26 17:10:56,015 DEBUG [org.hibernate.loader.Loader] - done entity load
2007-03-26 17:10:56,015 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNode.children#3
2007-03-26 17:10:56,015 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNode.children#3 is null
2007-03-26 17:10:56,015 DEBUG [org.hibernate.loader.Loader] - loading collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,015 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-03-26 17:10:56,015 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-03-26 17:10:56,015 DEBUG [org.hibernate.SQL] - select children0_.PARENT_KEY as PARENT4_1_, children0_.PK as PK1_, children0_.NAME as NAME1_, children0_.PK as PK19_0_, children0_.PATH as PATH19_0_, children0_.NAME as NAME19_0_, children0_.PARENT_KEY as PARENT4_19_0_ from JBP_OBJECT_NODE children0_ where children0_.PARENT_KEY=?
2007-03-26 17:10:56,031 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#4]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#5]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#6]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#7]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#8]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,031 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#72]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#183]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.ObjectNode#191]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#3]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.ConnectionManager] - aggressively releasing JDBC connection
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.ConnectionManager] - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.ObjectNode#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#4
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#4 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - loading entity: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-03-26 17:10:56,046 DEBUG [org.hibernate.SQL] - select portalobje0_.PK as PK20_0_, portalobje0_.LISTENER as LISTENER20_0_, portalobje0_4_.INSTANCE_REF as INSTANCE2_27_0_, case when portalobje0_1_.PK is not null then 1 when portalobje0_2_.PK is not null then 2 when portalobje0_3_.PK is not null then 3 when portalobje0_4_.PK is not null then 4 when portalobje0_.PK is not null then 0 end as clazz_0_, declaredpr1_.OBJECT_KEY as OBJECT1_2_, declaredpr1_.jbp_VALUE as jbp2_2_, declaredpr1_.NAME as NAME2_, modes2_.PK as PK3_, modes2_.name as name3_, windowstat3_.PK as PK4_, windowstat3_.name as name4_ from JBP_PORTAL_OBJECT portalobje0_ left outer join JBP_CONTEXT portalobje0_1_ on portalobje0_.PK=portalobje0_1_.PK left outer join JBP_PORTAL portalobje0_2_ on portalobje0_.PK=portalobje0_2_.PK left outer join JBP_PAGE portalobje0_3_ on portalobje0_.PK=portalobje0_3_.PK left outer join JBP_WINDOW portalobje0_4_ on portalobje0_.PK=portalobje0_4_.PK left outer join JBP_PORTAL_OBJECT_PROPS declaredpr1_ on portalobje0_.PK=declaredpr1_.OBJECT_KEY left outer join JBP_PORTAL_MODE modes2_ on portalobje0_.PK=modes2_.PK left outer join JBP_PORTAL_WINDOW_STATE windowstat3_ on portalobje0_.PK=windowstat3_.PK where portalobje0_.PK=?
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.ConnectionManager] - aggressively releasing JDBC connection
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.ConnectionManager] - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.WindowImpl#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.WindowImpl#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#4
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#4 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.WindowImpl#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalImpl.modes
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalImpl.modes#4
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalImpl.modes#4 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalImpl.modes
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#4
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#4 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - done entity load
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.ObjectNode#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNode#4
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNode#4 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.ObjectNode#4]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.ObjectNode#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#5
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#5 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - loading entity: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-03-26 17:10:56,046 DEBUG [org.hibernate.SQL] - select portalobje0_.PK as PK20_0_, portalobje0_.LISTENER as LISTENER20_0_, portalobje0_4_.INSTANCE_REF as INSTANCE2_27_0_, case when portalobje0_1_.PK is not null then 1 when portalobje0_2_.PK is not null then 2 when portalobje0_3_.PK is not null then 3 when portalobje0_4_.PK is not null then 4 when portalobje0_.PK is not null then 0 end as clazz_0_, declaredpr1_.OBJECT_KEY as OBJECT1_2_, declaredpr1_.jbp_VALUE as jbp2_2_, declaredpr1_.NAME as NAME2_, modes2_.PK as PK3_, modes2_.name as name3_, windowstat3_.PK as PK4_, windowstat3_.name as name4_ from JBP_PORTAL_OBJECT portalobje0_ left outer join JBP_CONTEXT portalobje0_1_ on portalobje0_.PK=portalobje0_1_.PK left outer join JBP_PORTAL portalobje0_2_ on portalobje0_.PK=portalobje0_2_.PK left outer join JBP_PAGE portalobje0_3_ on portalobje0_.PK=portalobje0_3_.PK left outer join JBP_WINDOW portalobje0_4_ on portalobje0_.PK=portalobje0_4_.PK left outer join JBP_PORTAL_OBJECT_PROPS declaredpr1_ on portalobje0_.PK=declaredpr1_.OBJECT_KEY left outer join JBP_PORTAL_MODE modes2_ on portalobje0_.PK=modes2_.PK left outer join JBP_PORTAL_WINDOW_STATE windowstat3_ on portalobje0_.PK=windowstat3_.PK where portalobje0_.PK=?
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.ConnectionManager] - aggressively releasing JDBC connection
2007-03-26 17:10:56,046 DEBUG [org.hibernate.jdbc.ConnectionManager] - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.WindowImpl#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.WindowImpl#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#5
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#5 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.WindowImpl#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#5
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#5 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalImpl.modes
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalImpl.modes#5
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalImpl.modes#5 is null
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalImpl.modes
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates
2007-03-26 17:10:56,046 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#5]
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#5
2007-03-26 17:10:56,046 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#5 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#5]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - done entity load
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.ObjectNode#5]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNode#5
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNode#5 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.ObjectNode#5]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.ObjectNode#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - loading entity: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-03-26 17:10:56,062 DEBUG [org.hibernate.SQL] - select portalobje0_.PK as PK20_0_, portalobje0_.LISTENER as LISTENER20_0_, portalobje0_4_.INSTANCE_REF as INSTANCE2_27_0_, case when portalobje0_1_.PK is not null then 1 when portalobje0_2_.PK is not null then 2 when portalobje0_3_.PK is not null then 3 when portalobje0_4_.PK is not null then 4 when portalobje0_.PK is not null then 0 end as clazz_0_, declaredpr1_.OBJECT_KEY as OBJECT1_2_, declaredpr1_.jbp_VALUE as jbp2_2_, declaredpr1_.NAME as NAME2_, modes2_.PK as PK3_, modes2_.name as name3_, windowstat3_.PK as PK4_, windowstat3_.name as name4_ from JBP_PORTAL_OBJECT portalobje0_ left outer join JBP_CONTEXT portalobje0_1_ on portalobje0_.PK=portalobje0_1_.PK left outer join JBP_PORTAL portalobje0_2_ on portalobje0_.PK=portalobje0_2_.PK left outer join JBP_PAGE portalobje0_3_ on portalobje0_.PK=portalobje0_3_.PK left outer join JBP_WINDOW portalobje0_4_ on portalobje0_.PK=portalobje0_4_.PK left outer join JBP_PORTAL_OBJECT_PROPS declaredpr1_ on portalobje0_.PK=declaredpr1_.OBJECT_KEY left outer join JBP_PORTAL_MODE modes2_ on portalobje0_.PK=modes2_.PK left outer join JBP_PORTAL_WINDOW_STATE windowstat3_ on portalobje0_.PK=windowstat3_.PK where portalobje0_.PK=?
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.ConnectionManager] - aggressively releasing JDBC connection
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.ConnectionManager] - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.WindowImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.WindowImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#6 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.WindowImpl#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalImpl.modes
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalImpl.modes
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections were found in result set for role: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - Caching collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - collection fully initialized: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.CollectionLoadContext] - 1 collections initialized for role: org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - done entity load
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.ObjectNode#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.ObjectNode#6
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.ObjectNode#6 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - done materializing entity [org.jboss.portal.core.impl.model.portal.ObjectNode#6]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.ObjectNode#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.model.portal.PortalObjectImpl#7
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - Element for org.jboss.portal.core.impl.model.portal.PortalObjectImpl#7 is null
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - loading entity: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection
2007-03-26 17:10:56,062 DEBUG [org.hibernate.SQL] - select portalobje0_.PK as PK20_0_, portalobje0_.LISTENER as LISTENER20_0_, portalobje0_4_.INSTANCE_REF as INSTANCE2_27_0_, case when portalobje0_1_.PK is not null then 1 when portalobje0_2_.PK is not null then 2 when portalobje0_3_.PK is not null then 3 when portalobje0_4_.PK is not null then 4 when portalobje0_.PK is not null then 0 end as clazz_0_, declaredpr1_.OBJECT_KEY as OBJECT1_2_, declaredpr1_.jbp_VALUE as jbp2_2_, declaredpr1_.NAME as NAME2_, modes2_.PK as PK3_, modes2_.name as name3_, windowstat3_.PK as PK4_, windowstat3_.name as name4_ from JBP_PORTAL_OBJECT portalobje0_ left outer join JBP_CONTEXT portalobje0_1_ on portalobje0_.PK=portalobje0_1_.PK left outer join JBP_PORTAL portalobje0_2_ on portalobje0_.PK=portalobje0_2_.PK left outer join JBP_PAGE portalobje0_3_ on portalobje0_.PK=portalobje0_3_.PK left outer join JBP_WINDOW portalobje0_4_ on portalobje0_.PK=portalobje0_4_.PK left outer join JBP_PORTAL_OBJECT_PROPS declaredpr1_ on portalobje0_.PK=declaredpr1_.OBJECT_KEY left outer join JBP_PORTAL_MODE modes2_ on portalobje0_.PK=modes2_.PK left outer join JBP_PORTAL_WINDOW_STATE windowstat3_ on portalobje0_.PK=windowstat3_.PK where portalobje0_.PK=?
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to open ResultSet (open ResultSets: 0, globally: 0)
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result row: EntityKey[org.jboss.portal.core.impl.model.portal.PortalObjectImpl#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - found row of collection: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.loader.Loader] - result set contains (possibly empty) collection: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close ResultSet (open ResultSets: 1, globally: 1)
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.AbstractBatcher] - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.ConnectionManager] - aggressively releasing JDBC connection
2007-03-26 17:10:56,062 DEBUG [org.hibernate.jdbc.ConnectionManager] - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - resolving associations for [org.jboss.portal.core.impl.model.portal.WindowImpl#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.engine.TwoPhaseLoad] - adding entity to second-level cache: [org.jboss.portal.core.impl.model.portal.WindowImpl#7]
2007-03-26 17:10:56,062 DEBUG [org.hibernate.cache.EhCache] - key: org.jboss.portal.core.impl.mode
|