Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] Alter table doesn't find table previously created during DDL

Michael,

Thanks again for your interest & help.

Well, the other property settings are being picked up when configured in the spring xml file.  [I will attach]

I'll attach my complete logs.  (Just in case I have missed sometrhing, but I'd expect to see some sort of exception or error).
[Aside from the non reweavable messages]

The DB configuration is done in spring and is a pooled data source.

Cheers,
Eric Gulatee


On Wed, Sep 3, 2008 at 2:01 PM, Eric Gulatee <eric.gulatee@xxxxxxxxx> wrote:
Michael,

Thank you for the quick response.

Well I do have resource_local transaction type in my persistence.xml.  (See below) 

The datasource is of type:  org.apache.commons.dbcp.PoolingDataSource

    derbyurl= "jdbc:derby://localhost:1527/digitalart;create=true";
derbydriver = org.apache.derby.jdbc.ClientDriver

Maybe I should not have a pooled connection as a datasource?  Would that have any impact?

The SQL generated is good when I execute through an SQL Tool.  [I added spring config  to generate the create & drop tables]

Thank you for your interest. 

    <bean id="bds" class="org.apache.commons.dbcp.BasicDataSource"
        destroy-method="close">
        <property name="driverClassName" ref="derbydriver" />
        <property name="url" ref="derbyurl" />
    </bean>
    <bean id="dsConnectionFactory" class="org.apache.commons.dbcp.DataSourceConnectionFactory">
        <constructor-arg>
            <ref bean="bds" />
        </constructor-arg>
    </bean>
    <bean id="poolableConnectionFactory" class="org.apache.commons.dbcp.PoolableConnectionFactory">
        <constructor-arg index="0">
            <ref bean="dsConnectionFactory" />
        </constructor-arg>
        <constructor-arg index="1">
            <ref bean="pool" />
        </constructor-arg>
        <constructor-arg index="2">
            <null />
        </constructor-arg>
        <constructor-arg index="3">
            <value>SELECT 1</value>
        </constructor-arg>
        <constructor-arg index="4">
            <value>false</value>
        </constructor-arg>
        <constructor-arg index="5">
            <value>false</value>
        </constructor-arg>
    </bean>
    <bean id="daDataSource" class="org.apache.commons.dbcp.PoolingDataSource"
        depends-on="poolableConnectionFactory">
        <constructor-arg>
            <ref bean="pool" />
        </constructor-arg>
    </bean></beans>




<?xml version="1.0" encoding="UTF-8" ?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
    version="1.0">
    <persistence-unit name="DigitalArtJPA"
        transaction-type="RESOURCE_LOCAL">
        <class>da.db.model.ArtCategory</class>
        <class>da.db.model.ArtMovement</class>
        <class>da.db.model.AuditLog</class>
        <class>da.db.model.Buyer</class>
        <class>da.db.model.CartItem</class>
        <class>da.db.model.Commission</class>
        <class>da.db.model.DigitalContent</class>
        <class>da.db.model.DigitalItem</class>
        <class>da.db.model.DigitalItemTag</class>
        <class>da.db.model.Forum</class>
        <class>da.db.model.Gallery</class>
        <class>da.db.model.GalleryTag</class>
        <class>da.db.model.Group</class>
        <class>da.db.model.Post</class>
        <class>da.db.model.Price</class>
        <class>da.db.model.Rating</class>
        <class>da.db.model.RatingAggregate</class>
        <class>da.db.model.RatingContainer</class>
        <class>da.db.model.RememberMe</class>
        <class>da.db.model.Seller</class>
        <class>da.db.model.User</class>
       
    </persistence-unit>
</persistence>




On Wed, Sep 3, 2008 at 1:34 PM, <MICHAEL.OBRIEN@xxxxxxxxxx> wrote:
Eric,
    Hi, The cause should be due to no auto-commit set, or ddl-generation is running in a JTA transaction.
    I noticed that your RESOURCE_LOCAL jdbc settings were not set in persistence.xml - but they evidently get picked up by the spring config or in properties set in your app.
 
    Since the spring containter framework is another layer on top of EclipseLink - i would like to adapt an example scenario for the combination Tomcat/Derby with/without Spring.
    This is an important proof-of-concept app and I will get back to you on my results and post the example to the following JPA examples page.
 
   
    thank you
    /michael
-----Original Message-----
From: Eric Gulatee [mailto:eric.gulatee@xxxxxxxxx]
Sent: Wednesday, September 03, 2008 12:34
To: EclipseLink User Discussions
Subject: Re: [eclipselink-users] Alter table doesn't find table previously created during DDL

All,

I vaguely remember having configured properties for hibernate in the EntityManagerFactory. So I moved the settings you indicated in the spring config.  Things seem to behave slightly differently when I configuring the properties you mention to put  in persistence.xml in the spring configuration.  (More logging (finest), so the settings take only if I put in string config )  However I still have a failure on altering tables and the tables DO NOT exist.

I realize the tomcat logs don't show the info stuff I see on the console.
Anyhow, I will attach my spring config. 

Has anyone gotten spring & eclipselink & ddl generation working together?  Any examples or other ideas?  Likely something silly I am not doing. 


[EL Info]: 2008.09.03 12:22:20.217--ServerSession(18560421)--Thread(Thread[main,5,main])--EclipseLink, version: Eclipse Persistence Services - 1.1 (B
ild SNAPSHOT-20080901)
[EL Config]: 2008.09.03 12:22:21.842--ServerSession(18560421)--Connection(5262695)--Thread(Thread[main,5,main])--connecting(DatabaseLogin(
        platform=>DerbyPlatform
        user name=> ""
        connector=>JNDIConnector datasource name=>null
))
[EL Config]: 2008.09.03 12:22:26.061--ServerSession(18560421)--Connection(4052150)--Thread(Thread[main,5,main])--Connected: jdbc:derby://localhost:15
7/digitalart;create=true
        User: APP
        Database: Apache Derby  Version: 10.4.1.3 - (648739)
        Driver: Apache Derby Network Client JDBC Driver  Version: 10.4.1.3 - (648739)
[EL Config]: 2008.09.03 12:22:26.061--ServerSession(18560421)--Connection(22549381)--Thread(Thread[main,5,main])--connecting(DatabaseLogin(
        platform=>DerbyPlatform
        user name=> ""
        connector=>JNDIConnector datasource name=>null
))
[EL Config]: 2008.09.03 12:22:26.061--ServerSession(18560421)--Connection(23700826)--Thread(Thread[main,5,main])--Connected: jdbc:derby://localhost:1
27/digitalart;create=true
        User: APP
        Database: Apache Derby  Version: 10.4.1.3 - (648739)
        Driver: Apache Derby Network Client JDBC Driver  Version: 10.4.1.3 - (648739)
[EL Finest]: 2008.09.03 12:22:26.170--ServerSession(18560421)--Thread(Thread[main,5,main])--sequencing connected, state is Preallocation_Transaction_
oAccessor_State
[EL Finest]: 2008.09.03 12:22:26.170--ServerSession(18560421)--Thread(Thread[main,5,main])--sequence : preallocation size 50
[EL Finest]: 2008.09.03 12:22:26.170--ServerSession(18560421)--Thread(Thread[main,5,main])--sequence SEQ_GEN: preallocation size 50
[EL Info]: 2008.09.03 12:22:26.327--ServerSession(18560421)--Thread(Thread[main,5,main])--file:/C:/development/apache-tomcat-6.0.14/webapps/DigitalAr
Web/WEB-INF/lib/da-db-0.0.1-SNAPSHOT.jar-DigitalArtJPA login successful
[EL Finest]: 2008.09.03 12:22:26.577--ServerSession(18560421)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 12:22:26.592--ServerSession(18560421)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 12:22:26.592--ServerSession(18560421)--Connection(23310932)--Thread(Thread[main,5,main])--CREATE TABLE AUDITLOG (ID BIGINT NOT
ULL, USERNAME VARCHAR(255), SESSIONID VARCHAR(255), ACTION VARCHAR(255), MESSAGE VARCHAR(255), IP VARCHAR(255), USERAGENT VARCHAR(255), TIMESTAMP TIM
STAMP, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 12:22:27.030--Thread(Thread[main,5,main])--The table (AUDITLOG) is created.

[EL Fine]: 2008.09.03 12:22:39.733--ServerSession(18560421)--Connection(16233020)--Thread(Thread[main,5,main])--CREATE TABLE RATING (ID BIGINT NOT NUL
L, VALUE INTEGER, CONTAINER_ID BIGINT, USERWHOVOTED_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 12:22:40.170--Thread(Thread[main,5,main])--The table (RATING) is created.
[EL Finest]: 2008.09.03 12:22:40.170--ServerSession(18560421)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 12:22:40.170--ServerSession(18560421)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 12:22:40.170--ServerSession(18560421)--Connection(25626423)--Thread(Thread[main,5,main])--CREATE TABLE FORUM (ID BIGINT NOT NULL
, NAME VARCHAR(255), GALLERY_ID BIGINT, IMAGE_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 12:22:40.498--Thread(Thread[main,5,main])--The table (FORUM) is created.
[EL Finest]: 2008.09.03 12:22:40.498--ServerSession(18560421)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 12:22:40.498--ServerSession(18560421)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 12:22:40.498--ServerSession(18560421)--Connection(26133207)--Thread(Thread[main,5,main])--ALTER TABLE GROUPS_GROUPS ADD CONSTRAI
NT GRUPSGROUPSGroupID FOREIGN KEY (Group_ID) REFERENCES GROUPS (ID)
[EL Fine]: 2008.09.03 12:22:40.733--ServerSession(18560421)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 12:22:40.811--ServerSession(18560421)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'GROUPS_GROUPS' because it does not exist.
Error Code: -1
Call: ALTER TABLE GROUPS_GROUPS ADD CONSTRAINT GRUPSGROUPSGroupID FOREIGN KEY (Group_ID) REFERENCES GROUPS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 12:22:40.842--ServerSession(18560421)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 12:22:40.842--ServerSession(18560421)--Thread(Thread[main,5,main])--reconnecting to external connection pool




_______________________________________________
eclipselink-users mailing list
eclipselink-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/eclipselink-users



<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans";
	xmlns:aop="http://www.springframework.org/schema/aop"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
	xmlns:context="http://www.springframework.org/schema/context";
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
      http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
      
      http://www.springframework.org/schema/aop 
      http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd";>

	<bean id="eclipseLinkJPAProperties"
		class="org.springframework.beans.factory.config.PropertiesFactoryBean">
		<property name="properties">
			<props>
				<prop key="eclipselink.logging.level">FINEST</prop>
				<prop key="eclipselink.ddl-generation">create-tables</prop>
				<prop key="eclipselink.ddl-generation.output-mode">both</prop>
				<prop key="eclipselink.target-database">org.eclipse.persistence.platform.database.DerbyPlatform</prop>
				
				<prop key="eclipselink.drop-ddl-jdbc-file-name">drop.sql</prop>
				<prop key="eclipselink.create-ddl-jdbc-file-name">create.sql</prop>
				<prop key="eclipselink.application-location">C:\ddl\</prop>
				<prop key="eclipselink.logging.exceptions">true</prop>

				
			</props>
		</property>
	</bean>

	<bean id="jpaAdapter"
		class="org.springframework.orm.jpa.vendor.EclipseLinkJpaVendorAdapter">
		<property name="databasePlatform"
			value="org.eclipse.persistence.platform.database.DerbyPlatform" >
			</property>
			<property name="generateDdl" value="true"></property>
			<property name="showSql" value="true"></property>
	</bean>
	<bean id="jpaDialect"
		class="org.springframework.orm.jpa.vendor.EclipseLinkJpaDialect">
	</bean>
	<bean id="entityManagerFactory"
		class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
		<property name="dataSource" ref="daDataSource" />
		<property name="persistenceUnitName" value="DigitalArtJPA" />
		<property name="jpaDialect" ref="jpaDialect" />
		<property name="jpaVendorAdapter" ref="jpaAdapter" />
		<property name="jpaProperties" ref="eclipseLinkJPAProperties"></property>
		
	</bean>
	<aop:aspectj-autoproxy />
	<context:spring-configured />
	<context:load-time-weaver weaver-class="org.springframework.instrument.classloading.ReflectiveLoadTimeWeaver" aspectj-weaving="autodetect"/>
</beans>
C:\development\apache-tomcat-6.0.14\bin>catalina run
Using CATALINA_BASE:   C:\development\apache-tomcat-6.0.14
Using CATALINA_HOME:   C:\development\apache-tomcat-6.0.14
Using CATALINA_TMPDIR: C:\development\apache-tomcat-6.0.14\temp
Using JRE_HOME:        C:\development\jdk160
Sep 3, 2008 1:54:23 PM org.apache.catalina.core.AprLifecycleListener init
INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\developm
ent\jdk160\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;C:\oracle\ora92\bin;C:
\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Program Files\CA\Dcs\DMScripting\;C:\Program Files\CA\DCS\CAWIN\;C:\Progr
am Files\CA\Unicenter Software Delivery\BIN;C:\Program Files\CA\SharedComponents\DTS\bin;C:\PROGRA~1\CA\SHARED~1\CAM\bin;C:\Program Files\ATI Technolo
gies\ATI Control Panel;C:\WINDOWS;C:\WINDOWS\system32;C:\workspace\BuildMaster\apache-ant-1.7.0\bin;C:\tools\jEdit 4.3pre8;C:\development\jdk160\bin;C
:\Program Files\TortoiseCVS;C:\tools\apache-maven-2.0.9\bin;C:\tools\TextPad 5;c:\tools\svn-win32-1.4.4\bin;C:\tools\Python24;C:\development\eclipse\p
lugins\org.eclipse.tptp.platform.ac.win_ia32_4.4.1.v200709261752\agent_controller\;C:\development\eclipse\plugins\org.eclipse.tptp.platform.ac.win_ia3
2_4.4.1.v200709261752\agent_controller\\bin
Sep 3, 2008 1:54:23 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Sep 3, 2008 1:54:24 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1566 ms
Sep 3, 2008 1:54:24 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Sep 3, 2008 1:54:24 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.14
Sep 3, 2008 1:54:32 PM org.apache.catalina.loader.WebappClassLoader validateJarFile
INFO: validateJarFile(C:\development\apache-tomcat-6.0.14\webapps\DigitalArtWeb\WEB-INF\lib\com.springsource.javax.servlet-2.5.0.jar) - jar not loaded
. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
157 [main] INFO org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization started
719 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Refreshing org.springframework.web.context.support.XmlWebApplicatio
nContext@18c3679: display name [Root WebApplicationContext]; startup date [Wed Sep 03 13:54:37 EDT 2008]; root of context hierarchy
1719 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from ServletContext resource [/WEB-INF/d
igitalart-services-config.xml]
2328 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [spring/applica
tionContext.xml]
2469 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [springconfig/a
pplicationContext-main.xml]
2594 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [springconfig/a
pplicationContext-logging.xml]
2719 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-db.xml]
2782 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-db-ds-derby-network.xml]
2860 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-propertyconfiguration.xml]
3235 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-db-eclipselink.xml]
4360 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-dao.xml]
4469 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-db.xml]
4688 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-db-ds-derby-network.xml]
4750 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-propertyconfiguration.xml]
4938 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'hostnamefactory': replaci
ng [Generic bean: class [util.HostnamePropertyUtil]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandi
date=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [M
ETA-INF/applicationContext-propertyconfiguration.xml]] with [Generic bean: class [util.HostnamePropertyUtil]; scope=singleton; abstract=false; lazyIni
t=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null;
destroyMethodName=null; defined in class path resource [META-INF/applicationContext-propertyconfiguration.xml]]
4938 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'propertypath': replacing
[Generic bean: class [null]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false
; factoryBeanName=hostnamefactory; factoryMethodName=getHostSpecificPropertyFilePath; initMethodName=null; destroyMethodName=null; defined in class pa
th resource [META-INF/applicationContext-propertyconfiguration.xml]] with [Generic bean: class [null]; scope=singleton; abstract=false; lazyInit=false
; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=hostnamefactory; factoryMethodName=getHostSpecificProperty
FilePath; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-propertyconfiguration.xml]]
4938 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'environmentManagement': r
eplacing [Generic bean: class [da.service.impl.EnvironmentManagementImpl]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependency
Check=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in
class path resource [META-INF/applicationContext-propertyconfiguration.xml]] with [Generic bean: class [da.service.impl.EnvironmentManagementImpl]; sc
ope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factory
MethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-propertyconfiguration.xml]]
4938 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'derbyurlgenerator': repla
cing [Generic bean: class [util.DerbyURLGenerator]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandid
ate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [ME
TA-INF/applicationContext-propertyconfiguration.xml]] with [Generic bean: class [util.DerbyURLGenerator]; scope=singleton; abstract=false; lazyInit=fa
lse; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; dest
royMethodName=null; defined in class path resource [META-INF/applicationContext-propertyconfiguration.xml]]
4938 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'pool': replacing [Generic
 bean: class [org.apache.commons.pool.impl.GenericObjectPool]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; aut
owireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path r
esource [META-INF/applicationContext-db-ds-derby-network.xml]] with [Generic bean: class [org.apache.commons.pool.impl.GenericObjectPool]; scope=singl
eton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodNam
e=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-db-ds-derby-network.xml]]
4938 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'derbyurl': replacing [Gen
eric bean: class [null]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; fa
ctoryBeanName=derbyurlgenerator; factoryMethodName=getURL; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/appli
cationContext-db-ds-derby-network.xml]] with [Generic bean: class [null]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyC
heck=0; autowireCandidate=true; primary=false; factoryBeanName=derbyurlgenerator; factoryMethodName=getURL; initMethodName=null; destroyMethodName=nul
l; defined in class path resource [META-INF/applicationContext-db-ds-derby-network.xml]]
4938 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'derbydriver': replacing [
Generic bean: class [null]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false;
 factoryBeanName=derbyurlgenerator; factoryMethodName=getDriver; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF
/applicationContext-db-ds-derby-network.xml]] with [Generic bean: class [null]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; depen
dencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=derbyurlgenerator; factoryMethodName=getDriver; initMethodName=null; destroyMetho
dName=null; defined in class path resource [META-INF/applicationContext-db-ds-derby-network.xml]]
4953 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'bds': replacing [Generic
bean: class [org.apache.commons.dbcp.BasicDataSource]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCan
didate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=close; defined in class path resource
 [META-INF/applicationContext-db-ds-derby-network.xml]] with [Generic bean: class [org.apache.commons.dbcp.BasicDataSource]; scope=singleton; abstract
=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMe
thodName=null; destroyMethodName=close; defined in class path resource [META-INF/applicationContext-db-ds-derby-network.xml]]
5000 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'dsConnectionFactory': rep
lacing [Generic bean: class [org.apache.commons.dbcp.DataSourceConnectionFactory]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; de
pendencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; def
ined in class path resource [META-INF/applicationContext-db-ds-derby-network.xml]] with [Generic bean: class [org.apache.commons.dbcp.DataSourceConnec
tionFactory]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanNa
me=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-db-ds-derby-
network.xml]]
5000 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'poolableConnectionFactory
': replacing [Generic bean: class [org.apache.commons.dbcp.PoolableConnectionFactory]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0
; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null;
 defined in class path resource [META-INF/applicationContext-db-ds-derby-network.xml]] with [Generic bean: class [org.apache.commons.dbcp.PoolableConn
ectionFactory]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBean
Name=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-db-ds-derb
y-network.xml]]
5000 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'daDataSource': replacing
[Generic bean: class [org.apache.commons.dbcp.PoolingDataSource]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0;
autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class pat
h resource [META-INF/applicationContext-db-ds-derby-network.xml]] with [Generic bean: class [org.apache.commons.dbcp.PoolingDataSource]; scope=singlet
on; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=
null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-db-ds-derby-network.xml]]
5000 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-db-eclipselink.xml]
5141 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'eclipseLinkJPAProperties'
: replacing [Generic bean: class [org.springframework.beans.factory.config.PropertiesFactoryBean]; scope=singleton; abstract=false; lazyInit=false; au
towireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMeth
odName=null; defined in class path resource [META-INF/applicationContext-db-eclipselink.xml]] with [Generic bean: class [org.springframework.beans.fac
tory.config.PropertiesFactoryBean]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primar
y=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicati
onContext-db-eclipselink.xml]]
5157 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'jpaAdapter': replacing [G
eneric bean: class [org.springframework.orm.jpa.vendor.EclipseLinkJpaVendorAdapter]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0;
dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; d
efined in class path resource [META-INF/applicationContext-db-eclipselink.xml]] with [Generic bean: class [org.springframework.orm.jpa.vendor.EclipseL
inkJpaVendorAdapter]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; facto
ryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-db-e
clipselink.xml]]
5157 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'jpaDialect': replacing [G
eneric bean: class [org.springframework.orm.jpa.vendor.EclipseLinkJpaDialect]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; depend
encyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined
 in class path resource [META-INF/applicationContext-db-eclipselink.xml]] with [Generic bean: class [org.springframework.orm.jpa.vendor.EclipseLinkJpa
Dialect]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=n
ull; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-db-eclipselink.x
ml]]
5157 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'entityManagerFactory': re
placing [Generic bean: class [org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean]; scope=singleton; abstract=false; lazyInit=false; au
towireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMeth
odName=null; defined in class path resource [META-INF/applicationContext-db-eclipselink.xml]] with [Generic bean: class [org.springframework.orm.jpa.L
ocalContainerEntityManagerFactoryBean]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; pr
imary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/appli
cationContext-db-eclipselink.xml]]
5157 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'loadTimeWeaver': replacin
g [Generic bean: class [org.springframework.instrument.classloading.ReflectiveLoadTimeWeaver]; scope=singleton; abstract=false; lazyInit=false; autowi
reMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodNa
me=null] with [Generic bean: class [org.springframework.instrument.classloading.ReflectiveLoadTimeWeaver]; scope=singleton; abstract=false; lazyInit=f
alse; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; des
troyMethodName=null]
5157 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-tx.xml]
5875 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-jcr.xml]
5938 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-dao-query.xml]
6000 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-dao-query-eclipselink.xml]
6157 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-service-query.xml]
6203 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-dao-query.xml]
6250 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-dao-query-eclipselink.xml]
6282 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'jpaTemplate': replacing [
Generic bean: class [org.springframework.orm.jpa.JpaTemplate]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; aut
owireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path r
esource [META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.springframework.orm.jpa.JpaTemplate]; scope=singleton;
 abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=nul
l; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6282 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'auditlogqueryDao': replac
ing [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowire
Candidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resour
ce [META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false
; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodNa
me=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6282 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'imagequeryDao': replacing
 [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCan
didate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource
[META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; l
azyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=
null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6282 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'commissionqueryDao': repl
acing [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowi
reCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path reso
urce [META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=fal
se; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethod
Name=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6282 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'digitalitemqueryDao': rep
lacing [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autow
ireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path res
ource [META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=fa
lse; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMetho
dName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6328 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'userqueryDao': replacing
[Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCand
idate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [
META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; la
zyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=n
ull; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6328 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'groupqueryDao': replacing
 [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCan
didate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource
[META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; l
azyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=
null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6344 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'sellerqueryDao': replacin
g [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCa
ndidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource
 [META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false;
lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName
=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6344 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'galleryqueryDao': replaci
ng [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireC
andidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resourc
e [META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false;
 lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodNam
e=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6344 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'cartqueryDao': replacing
[Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCand
idate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [
META-INF/applicationContext-dao-query-eclipselink.xml]] with [Generic bean: class [org.eclipselink.GenericDaoJpa]; scope=singleton; abstract=false; la
zyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=n
ull; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-dao-query-eclipselink.xml]]
6344 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [META-INF/appli
cationContext-tx.xml]
6391 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'transactionManager': repl
acing [Generic bean: class [org.springframework.orm.jpa.JpaTransactionManager]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; depen
dencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; define
d in class path resource [META-INF/applicationContext-tx.xml]] with [Generic bean: class [org.springframework.orm.jpa.JpaTransactionManager]; scope=si
ngleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethod
Name=null; initMethodName=null; destroyMethodName=null; defined in class path resource [META-INF/applicationContext-tx.xml]]
6391 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [springconfig/a
pplicationContext-mail.xml]
6500 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [springconfig/a
pplicationContext-service.xml]
6578 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [springconfig/a
pplicationContext-mail.xml]
6610 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Overriding bean definition for bean 'mailSender': replacing [G
eneric bean: class [org.springframework.mail.javamail.JavaMailSenderImpl]; scope=singleton; abstract=false; lazyInit=false; autowireMode=0; dependency
Check=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in
class path resource [springconfig/applicationContext-mail.xml]] with [Generic bean: class [org.springframework.mail.javamail.JavaMailSenderImpl]; scop
e=singleton; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMe
thodName=null; initMethodName=null; destroyMethodName=null; defined in class path resource [springconfig/applicationContext-mail.xml]]
6641 [main] INFO org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from class path resource [springconfig/a
pplicationContext-aop.xml]
7047 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean factory for application context [org.springframework.web.cont
ext.support.XmlWebApplicationContext@18c3679]: org.springframework.beans.factory.support.DefaultListableBeanFactory@366573
[TomcatInstrumentableClassLoader@113a53d] error at org\springframework\beans\factory\aspectj\ConfigurableObject.java::0 class 'org.springframework.bea
ns.factory.aspectj.ConfigurableObject' is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at org\springframework\beans\factory\aspectj\AbstractInterfaceDrivenDependencyInjectionAspect.aj::0 cl
ass 'org.springframework.beans.factory.aspectj.AbstractInterfaceDrivenDependencyInjectionAspect$ConfigurableDeserializationSupport' is already woven a
nd has not been built in reweavable mode
24688 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.fac
tory.support.DefaultListableBeanFactory@366573: defining beans [hostnamefactory,propertypath,environmentManagement,derbyurlgenerator,pool,derbyurl,der
bydriver,bds,dsConnectionFactory,poolableConnectionFactory,daDataSource,eclipseLinkJPAProperties,jpaAdapter,jpaDialect,entityManagerFactory,org.spring
framework.aop.config.internalAutoProxyCreator,org.springframework.context.config.internalBeanConfigurerAspect,org.springframework.context.weaving.Aspe
ctJWeavingEnabler#0,loadTimeWeaver,org.springframework.context.weaving.AspectJWeavingEnabler#1,org.springframework.orm.jpa.support.PersistenceAnnotati
onBeanPostProcessor#0,transactionManager,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transac
tion.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,userDao,groupDao,sellerDao,buyerDao,galler
yDao,imageDao,digitalitemDao,forumDao,postDao,ratingDao,ratingcontainerDao,auditDao,commissionDao,cartDao,artDao,remembermeDao,featureFSDao,jpaTemplat
e,auditlogqueryDao,imagequeryDao,commissionqueryDao,digitalitemqueryDao,userqueryDao,groupqueryDao,sellerqueryDao,galleryqueryDao,cartqueryDao,gallery
QueryManagement,commissionQueryManagement,auditQueryManagement,cartQueryManagement,imagequeryManagement,userqueryManagement,groupqueryManagement,selle
rqueryManagement,org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#1,mailSender,cartManagement,userManagement,sellerManagemen
t,buyerManagement,galleryManagement,digitalitemManagement,imageManagement,commissionManagement,forumManagement,ratingManagement,sessionManagement,feat
ureManagement,auditManagement,localeManagement,userEmailManagement,artManagement,imageConversionManagement,wicketApplication,artinit,usergroupsinit,re
memberMeService]; root of factory hierarchy
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\UserDaoJpaImpl.java::0 class 'da.db.dao.jpa.UserDaoJpaImpl' is already woven and has
not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\GroupDaoJpaImpl.java::0 class 'da.db.dao.jpa.GroupDaoJpaImpl' is already woven and ha
s not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\SellerDaoJpaImpl.java::0 class 'da.db.dao.jpa.SellerDaoJpaImpl' is already woven and
has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\BuyerDaoJpaImpl.java::0 class 'da.db.dao.jpa.BuyerDaoJpaImpl' is already woven and ha
s not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\GalleryDaoJpaImpl.java::0 class 'da.db.dao.jpa.GalleryDaoJpaImpl' is already woven an
d has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\ImageDaoJpaImpl.java::0 class 'da.db.dao.jpa.ImageDaoJpaImpl' is already woven and ha
s not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\DigitalItemDaoJpaImpl.java::0 class 'da.db.dao.jpa.DigitalItemDaoJpaImpl' is already
woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\ForumDaoJpaImpl.java::0 class 'da.db.dao.jpa.ForumDaoJpaImpl' is already woven and ha
s not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\AuditLogDaoJpaImpl.java::0 class 'da.db.dao.jpa.AuditLogDaoJpaImpl' is already woven
and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\CommissionDaoJpaImpl.java::0 class 'da.db.dao.jpa.CommissionDaoJpaImpl' is already wo
ven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\CartDaoJpaImpl.java::0 class 'da.db.dao.jpa.CartDaoJpaImpl' is already woven and has
not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\ArtDaoJpaImpl.java::0 class 'da.db.dao.jpa.ArtDaoJpaImpl' is already woven and has no
t been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\db\dao\jpa\RememberMeDaoJpaImpl.java::0 class 'da.db.dao.jpa.RememberMeDaoJpaImpl' is already wo
ven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\GalleryQueryManagementImpl.java::0 class 'da.service.impl.GalleryQueryManagementImp
l' is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\CommissionQueryManagementImpl.java::0 class 'da.service.impl.CommissionQueryManagem
entImpl' is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\AuditLogQueryManagementImpl.java::0 class 'da.service.impl.AuditLogQueryManagementI
mpl' is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\CartQueryManagementImpl.java::0 class 'da.service.impl.CartQueryManagementImpl' is
already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\DigitalItemQueryManagementImpl.java::0 class 'da.service.impl.DigitalItemQueryManag
ementImpl' is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\UserQueryManagementImpl.java::0 class 'da.service.impl.UserQueryManagementImpl' is
already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\GroupQueryManagementImpl.java::0 class 'da.service.impl.GroupQueryManagementImpl' i
s already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\SellerQueryManagementImpl.java::0 class 'da.service.impl.SellerQueryManagementImpl'
 is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\CartManagementImpl.java::0 class 'da.service.impl.CartManagementImpl' is already wo
ven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\UserManagementImpl.java::0 class 'da.service.impl.UserManagementImpl' is already wo
ven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\SellerManagementImpl.java::0 class 'da.service.impl.SellerManagementImpl' is alread
y woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\BuyerManagementImpl.java::0 class 'da.service.impl.BuyerManagementImpl' is already
woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\GalleryManagementImpl.java::0 class 'da.service.impl.GalleryManagementImpl' is alre
ady woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\DigitalItemManagementImpl.java::0 class 'da.service.impl.DigitalItemManagementImpl'
 is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\ImageManagementImpl.java::0 class 'da.service.impl.ImageManagementImpl' is already
woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\CommissionManagementImpl.java::0 class 'da.service.impl.CommissionManagementImpl' i
s already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\ForumManagementImpl.java::0 class 'da.service.impl.ForumManagementImpl' is already
woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\RatingManagementImpl.java::0 class 'da.service.impl.RatingManagementImpl' is alread
y woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\FeatureManagementImpl.java::0 class 'da.service.impl.FeatureManagementImpl' is alre
ady woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\AuditManagementImpl.java::0 class 'da.service.impl.AuditManagementImpl' is already
woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\service\impl\ArtManagementImpl.java::0 class 'da.service.impl.ArtManagementImpl' is already wove
n and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\web\service\ArtCategoriesInitialization.java::0 class 'da.web.service.ArtCategoriesInitializatio
n' is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at da\web\service\UserGroupsInitialization.java::0 class 'da.web.service.UserGroupsInitialization' is
already woven and has not been built in reweavable mode
44906 [main] INFO org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean - Building JPA container EntityManagerFactory for persistence uni
t 'DigitalArtJPA'
[EL Finest]: 2008.09.03 13:55:26.708--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.logging.exceptions; value=true
[EL Finest]: 2008.09.03 13:55:26.880--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin predeploying Persistence Unit DigitalArtJPA; state I
nitial; factoryCount 0
[EL Finest]: 2008.09.03 13:55:26.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.orm.throw.exceptions; default value=t
rue
[EL Finest]: 2008.09.03 13:55:26.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.weaving.changetracking; default value
=true
[EL Finest]: 2008.09.03 13:55:26.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.weaving.lazy; default value=true
[EL Finest]: 2008.09.03 13:55:26.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.weaving.eager; default value=false
[EL Finest]: 2008.09.03 13:55:26.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.weaving.fetchgroups; default value=tr
ue
[EL Finest]: 2008.09.03 13:55:26.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.weaving.internal; default value=true
[EL Finer]: 2008.09.03 13:55:27.114--ServerSession(26829948)--Thread(Thread[main,5,main])--Searching for default mapping file in file:/C:/development/
apache-tomcat-6.0.14/webapps/DigitalArtWeb/WEB-INF/lib/da-db-0.0.1-SNAPSHOT.jar
[EL Finer]: 2008.09.03 13:55:27.193--ServerSession(26829948)--Thread(Thread[main,5,main])--Searching for default mapping file in file:/C:/development/
apache-tomcat-6.0.14/webapps/DigitalArtWeb/WEB-INF/lib/da-db-0.0.1-SNAPSHOT.jar
[EL Config]: 2008.09.03 13:55:31.177--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Post] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:31.177--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Pos
t] is being defaulted to: Post.
[EL Config]: 2008.09.03 13:55:32.474--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.util.Date da.db.model.Po
st.creationtime] is being defaulted to: CREATIONTIME.
[EL Config]: 2008.09.03 13:55:32.630--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Post
.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.646--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.String da.db.model.
Post.message] is being defaulted to: MESSAGE.
[EL Config]: 2008.09.03 13:55:32.646--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.util.Date da.db.model.Po
st.modificationtime] is being defaulted to: MODIFICATIONTIME.
[EL Config]: 2008.09.03 13:55:32.646--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.String da.db.model.
Post.title] is being defaulted to: TITLE.
[EL Config]: 2008.09.03 13:55:32.817--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.DigitalItem] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.817--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Dig
italItem] is being defaulted to: DigitalItem.
[EL Config]: 2008.09.03 13:55:32.864--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Digi
talItem.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.864--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.DigitalItem.name] is being defaulted to: NAME.
[EL Config]: 2008.09.03 13:55:32.864--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.DigitalItem.description] is being defaulted to: DESCRIPTION.
[EL Config]: 2008.09.03 13:55:32.864--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.util.Date da.db.
model.DigitalItem.creationdate] is being defaulted to: CREATIONDATE.
[EL Config]: 2008.09.03 13:55:32.864--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.AuditLog] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.864--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Aud
itLog] is being defaulted to: AuditLog.
[EL Config]: 2008.09.03 13:55:32.864--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Audi
tLog.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.864--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.AuditLog.username] is being defaulted to: USERNAME.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.AuditLog.sessionid] is being defaulted to: SESSIONID.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.AuditLog.action] is being defaulted to: ACTION.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.AuditLog.message] is being defaulted to: MESSAGE.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.AuditLog.ip] is being defaulted to: IP.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.AuditLog.useragent] is being defaulted to: USERAGENT.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.util.Date da.db.model.Au
ditLog.timestamp] is being defaulted to: TIMESTAMP.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Forum] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.For
um] is being defaulted to: Forum.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Foru
m.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.880--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.Forum.name] is being defaulted to: NAME.
[EL Config]: 2008.09.03 13:55:32.896--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.User] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.896--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Use
r] is being defaulted to: User.
[EL Config]: 2008.09.03 13:55:32.896--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to many m
apping element [private java.util.Set da.db.model.User.groups] is being defaulted to: class da.db.model.Group.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.User
.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.User.password] is being defaulted to: PASSWORD.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.User.username] is being defaulted to: USERNAME.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.User.email] is being defaulted to: EMAIL.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.User.firstname] is being defaulted to: FIRSTNAME.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.User.lastname] is being defaulted to: LASTNAME.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Boolean da.
db.model.User.locked] is being defaulted to: LOCKED.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.RatingAggregate] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Rat
ingAggregate] is being defaulted to: RatingAggregate.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Rati
ngAggregate.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Rati
ngAggregate.numberofratings] is being defaulted to: NUMBEROFRATINGS.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Rati
ngAggregate.sumofratings] is being defaulted to: SUMOFRATINGS.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private double da.db.model.Ra
tingAggregate.rating] is being defaulted to: RATING.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.ArtMovement] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Art
Movement] is being defaulted to: ArtMovement.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.ArtM
ovement.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.String da.db.model.
ArtMovement.name] is being defaulted to: NAME.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.GalleryTag] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Gal
leryTag] is being defaulted to: GalleryTag.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Gall
eryTag.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.911--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.String da.db.model.
GalleryTag.tagvalue] is being defaulted to: TAGVALUE.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Group] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Gro
up] is being defaulted to: Group.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Grou
p.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.Group.name] is being defaulted to: NAME.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.RememberMe] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Rem
emberMe] is being defaulted to: RememberMe.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Reme
mberMe.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.RememberMe.token] is being defaulted to: TOKEN.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Price] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Pri
ce] is being defaulted to: Price.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Pric
e.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.String da.db.model.
Price.currency] is being defaulted to: CURRENCY.
[EL Config]: 2008.09.03 13:55:32.927--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [double da.db.model.Price.pric
e] is being defaulted to: PRICE.
[EL Config]: 2008.09.03 13:55:32.942--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Commission] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:32.942--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Com
mission] is being defaulted to: Commission.
[EL Config]: 2008.09.03 13:55:32.942--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Comm
ission.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.005--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Seller] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.005--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Sel
ler] is being defaulted to: Seller.
[EL Config]: 2008.09.03 13:55:33.005--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Sell
er.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.Boolean da.db.model
.Seller.commissionable] is being defaulted to: COMMISSIONABLE.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Buyer] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Buy
er] is being defaulted to: Buyer.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Buye
r.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Gallery] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Gal
lery] is being defaulted to: Gallery.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Gall
ery.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.Gallery.name] is being defaulted to: NAME.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.Rating] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Rat
ing] is being defaulted to: Rating.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Rati
ng.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.021--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.Integer da.db.model
.Rating.value] is being defaulted to: VALUE.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.ArtCategory] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Art
Category] is being defaulted to: ArtCategory.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.ArtC
ategory.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.String da.db.model.
ArtCategory.name] is being defaulted to: NAME.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.CartItem] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Car
tItem] is being defaulted to: CartItem.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Cart
Item.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.util.Date da.db.
model.CartItem.creationdate] is being defaulted to: CREATIONDATE.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private int da.db.model.CartI
tem.quantity] is being defaulted to: QUANTITY.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.RatingContainer] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Rat
ingContainer] is being defaulted to: RatingContainer.
[EL Config]: 2008.09.03 13:55:33.036--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Rati
ngContainer.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.052--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.DigitalContent] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.052--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Dig
italContent] is being defaulted to: DigitalContent.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private byte[] da.db.model.Di
gitalContent.content] is being defaulted to: CONTENT.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Digi
talContent.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.DigitalContent.name] is being defaulted to: NAME.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String da.d
b.model.DigitalContent.mimetype] is being defaulted to: MIMETYPE.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private java.util.Date da.db.
model.DigitalContent.creationdate] is being defaulted to: CREATIONDATE.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The access type for the persistent class [class da.db.mode
l.DigitalItemTag] is set to PROPERTY.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The alias name for the entity class [class da.db.model.Dig
italItemTag] is being defaulted to: DigitalItemTag.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [private long da.db.model.Digi
talItemTag.id] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:33.067--ServerSession(26829948)--Thread(Thread[main,5,main])--The column name for element [java.lang.String da.db.model.
DigitalItemTag.tagvalue] is being defaulted to: TAGVALUE.
[EL Config]: 2008.09.03 13:55:33.083--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [private java.util.Collection da.db.model.ArtCategory.movements] is being defaulted to: class da.db.model.ArtMovement.
[EL Config]: 2008.09.03 13:55:34.255--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [private
java.util.Collection da.db.model.ArtCategory.movements] is being defaulted to: ARTCATEGORY_ARTMOVEMENT.
[EL Config]: 2008.09.03 13:55:34.255--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.ArtCategory.movements] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.255--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.ArtCategory.movements] is being defaulted to: ArtCategory_ID.
[EL Config]: 2008.09.03 13:55:34.255--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.ArtCategory.movements] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.255--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.ArtCategory.movements] is being defaulted to: movements_ID.
[EL Config]: 2008.09.03 13:55:34.255--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.User da.db.model.Buyer.user] is being defaulted to: class da.db.model.User.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.User da.db.model.Buyer.user] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.User da.db.model.Buyer.user] is being defaulted to: USER_ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.User da.db.model.Rating.userWhoVoted] is being defaulted to: class da.db.model.User.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.User da.db.model.Rating.userWhoVoted] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.User da.db.model.Rating.userWhoVoted] is being defaulted to: USERWHOVOTED_ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [da.db.model.RatingContainer da.db.model.Rating.container] is being defaulted to: class da.db.model.RatingContainer.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.RatingContainer da.db.model.Rating.container] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.RatingContainer da.db.model.Rating.container] is being defaulted to: CONTAINER_ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [java.util.List da.db.model.Forum.post] is being defaulted to: class da.db.model.Post.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [java.uti
l.List da.db.model.Forum.post] is being defaulted to: FORUM_POST.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [java.util.List da.db.model.Forum.post] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [java.util.List da.db.model.Forum.post] is being defaulted to: Forum_ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [java.util.List da.db.model.Forum.post] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [java.util.List da.db.model.Forum.post] is being defaulted to: post_ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.Gallery da.db.model.Forum.gallery] is being defaulted to: class da.db.model.Gallery.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.Gallery da.db.model.Forum.gallery] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.Gallery da.db.model.Forum.gallery] is being defaulted to: GALLERY_ID.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.DigitalItem da.db.model.Forum.image] is being defaulted to: class da.db.model.DigitalItem.
[EL Config]: 2008.09.03 13:55:34.302--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.DigitalItem da.db.model.Forum.image] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.317--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.DigitalItem da.db.model.Forum.image] is being defaulted to: IMAGE_ID.
[EL Config]: 2008.09.03 13:55:34.317--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [private java.util.Collection da.db.model.DigitalItem.tags] is being defaulted to: class da.db.model.DigitalItemTag.
[EL Config]: 2008.09.03 13:55:34.364--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [da.db.model.DigitalItem da.db.model.DigitalItemTag.item] is being defaulted to: class da.db.model.DigitalItem.
[EL Config]: 2008.09.03 13:55:34.364--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.DigitalItem da.db.model.DigitalItemTag.item] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.364--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.DigitalItem da.db.model.DigitalItemTag.item] is being defaulted to: ITEM_ID.
[EL Config]: 2008.09.03 13:55:34.364--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [private java.util.Collection da.db.model.DigitalItem.publicimages] is being defaulted to: class da.db.model.DigitalContent.
[EL Config]: 2008.09.03 13:55:34.364--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [private
java.util.Collection da.db.model.DigitalItem.publicimages] is being defaulted to: DIGITALITEM_DIGITALCONTENT.
[EL Config]: 2008.09.03 13:55:34.364--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.DigitalItem.publicimages] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.DigitalItem.publicimages] is being defaulted to: DigitalItem_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.DigitalItem.publicimages] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.DigitalItem.publicimages] is being defaulted to: publicimages_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [private da.db.model.Gallery da.db.model.DigitalItem.gallery] is being defaulted to: class da.db.model.Gallery.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.Gallery da.db.model.DigitalItem.gallery] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.Gallery da.db.model.DigitalItem.gallery] is being defaulted to: GALLERY_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [private da.db.model.Seller da.db.model.DigitalItem.seller] is being defaulted to: class da.db.model.Seller.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.Seller da.db.model.DigitalItem.seller] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.Seller da.db.model.DigitalItem.seller] is being defaulted to: SELLER_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [private da.db.model.Price da.db.model.DigitalItem.price] is being defaulted to: class da.db.model.Price.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.Price da.db.model.DigitalItem.price] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.Price da.db.model.DigitalItem.price] is being defaulted to: PRICE_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.RatingContainer da.db.model.DigitalItem.ratingcontainer] is being defaulted to: class da.db.model.RatingContainer.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [private da.db.model.DigitalItem da.db.model.RatingContainer.image] is being defaulted to: class da.db.model.DigitalItem.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.DigitalItem da.db.model.RatingContainer.image] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.DigitalItem da.db.model.RatingContainer.image] is being defaulted to: IMAGE_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to many m
apping element [private java.util.Collection da.db.model.Group.users] is being defaulted to: class da.db.model.User.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [private
java.util.Collection da.db.model.Group.users] is being defaulted to: GROUPS_USERS.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.Group.users] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.Group.users] is being defaulted to: groups_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.Group.users] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.Group.users] is being defaulted to: users_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [private java.util.Collection da.db.model.Group.subgroups] is being defaulted to: class da.db.model.Group.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [private
java.util.Collection da.db.model.Group.subgroups] is being defaulted to: GROUPS_GROUPS.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.Group.subgroups] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.Group.subgroups] is being defaulted to: Group_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.Group.subgroups] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.Group.subgroups] is being defaulted to: subgroups_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [java.util.List da.db.model.Post.childPosts] is being defaulted to: class da.db.model.Post.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [java.uti
l.List da.db.model.Post.childPosts] is being defaulted to: POST_POST.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [java.util.List da.db.model.Post.childPosts] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [java.util.List da.db.model.Post.childPosts] is being defaulted to: Post_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [java.util.List da.db.model.Post.childPosts] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [java.util.List da.db.model.Post.childPosts] is being defaulted to: childPosts_ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.User da.db.model.Post.createdBy] is being defaulted to: class da.db.model.User.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.User da.db.model.Post.createdBy] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.380--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.User da.db.model.Post.createdBy] is being defaulted to: CREATEDBY_ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [private da.db.model.Gallery da.db.model.RatingContainer.gallery] is being defaulted to: class da.db.model.Gallery.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.Gallery da.db.model.RatingContainer.gallery] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.Gallery da.db.model.RatingContainer.gallery] is being defaulted to: GALLERY_ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [private da.db.model.Seller da.db.model.RatingContainer.seller] is being defaulted to: class da.db.model.Seller.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.Seller da.db.model.RatingContainer.seller] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.Seller da.db.model.RatingContainer.seller] is being defaulted to: SELLER_ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [java.util.Collection da.db.model.RatingContainer.ratings] is being defaulted to: class da.db.model.Rating.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.RatingAggregate da.db.model.RatingContainer.aggregaterating] is being defaulted to: class da.db.model.RatingAggregate.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.RatingAggregate da.db.model.RatingContainer.aggregaterating] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.RatingAggregate da.db.model.RatingContainer.aggregaterating] is being defaulted to: AGGREGATERATING_ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.Commission.sellers] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.Commission.sellers] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.Commission.movements] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.Commission.movements] is being defaulted to: Commission_ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Collection da.db.model.Commission.movements] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [private java.util.Collection da.db.model.Commission.movements] is being defaulted to: movements_ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.Forum da.db.model.Commission.forum] is being defaulted to: class da.db.model.Forum.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.Forum da.db.model.Commission.forum] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.Forum da.db.model.Commission.forum] is being defaulted to: FORUM_ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.Buyer da.db.model.Commission.buyer] is being defaulted to: class da.db.model.Buyer.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.Buyer da.db.model.Commission.buyer] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.Buyer da.db.model.Commission.buyer] is being defaulted to: BUYER_ID.
[EL Config]: 2008.09.03 13:55:34.411--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [private da.db.model.User da.db.model.CartItem.user] is being defaulted to: class da.db.model.User.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.User da.db.model.CartItem.user] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.User da.db.model.CartItem.user] is being defaulted to: USER_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [private da.db.model.DigitalItem da.db.model.CartItem.image] is being defaulted to: class da.db.model.DigitalItem.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.DigitalItem da.db.model.CartItem.image] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.DigitalItem da.db.model.CartItem.image] is being defaulted to: IMAGE_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [da.db.model.Gallery da.db.model.GalleryTag.gallery] is being defaulted to: class da.db.model.Gallery.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.Gallery da.db.model.GalleryTag.gallery] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.Gallery da.db.model.GalleryTag.gallery] is being defaulted to: GALLERY_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [da.db.model.DigitalItem da.db.model.DigitalContent.digitalitem] is being defaulted to: class da.db.model.DigitalItem.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.DigitalItem da.db.model.DigitalContent.digitalitem] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.DigitalItem da.db.model.DigitalContent.digitalitem] is being defaulted to: DIGITALITEM_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [private java.util.Collection da.db.model.Gallery.tags] is being defaulted to: class da.db.model.GalleryTag.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [private java.util.Collection da.db.model.Gallery.items] is being defaulted to: class da.db.model.DigitalItem.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [private da.db.model.Seller da.db.model.Gallery.owner] is being defaulted to: class da.db.model.Seller.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.Seller da.db.model.Gallery.owner] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.Seller da.db.model.Gallery.owner] is being defaulted to: OWNER_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [da.db.model.RatingContainer da.db.model.Gallery.ratingcontainer] is being defaulted to: class da.db.model.RatingContainer.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [da.db.model.ArtCategory da.db.model.ArtMovement.category] is being defaulted to: class da.db.model.ArtCategory.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.ArtCategory da.db.model.ArtMovement.category] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.ArtCategory da.db.model.ArtMovement.category] is being defaulted to: CATEGORY_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [private da.db.model.User da.db.model.Seller.user] is being defaulted to: class da.db.model.User.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [priva
te da.db.model.User da.db.model.Seller.user] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [priva
te da.db.model.User da.db.model.Seller.user] is being defaulted to: USER_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one map
ping element [private da.db.model.RatingContainer da.db.model.Seller.ratingcontainer] is being defaulted to: class da.db.model.RatingContainer.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [private java.util.Set da.db.model.Seller.images] is being defaulted to: class da.db.model.DigitalItem.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [private
java.util.Set da.db.model.Seller.images] is being defaulted to: SELLER_DIGITALITEM.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.images] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.images] is being defaulted to: Seller_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.images] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.images] is being defaulted to: images_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many ma
pping element [private java.util.Set da.db.model.Seller.galleries] is being defaulted to: class da.db.model.Gallery.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [private
java.util.Set da.db.model.Seller.galleries] is being defaulted to: SELLER_GALLERY.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.galleries] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.galleries] is being defaulted to: Seller_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.galleries] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.galleries] is being defaulted to: galleries_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to many m
apping element [private java.util.Set da.db.model.Seller.commissions] is being defaulted to: class da.db.model.Commission.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [private
java.util.Set da.db.model.Seller.commissions] is being defaulted to: SELLER_COMMISSION.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The source primary key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.commissions] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.commissions] is being defaulted to: Seller_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target primary key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.commissions] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many ma
pping [private java.util.Set da.db.model.Seller.commissions] is being defaulted to: commissions_ID.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one ma
pping element [da.db.model.User da.db.model.RememberMe.user] is being defaulted to: class da.db.model.User.
[EL Config]: 2008.09.03 13:55:34.427--ServerSession(26829948)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [da.db
.model.User da.db.model.RememberMe.user] is being defaulted to: ID.
[EL Config]: 2008.09.03 13:55:34.442--ServerSession(26829948)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [da.db
.model.User da.db.model.RememberMe.user] is being defaulted to: USER_ID.
[EL Finer]: 2008.09.03 13:55:34.521--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Post] registered to be processed by weav
er.
[EL Finer]: 2008.09.03 13:55:34.567--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.DigitalItem] registered to be processed
by weaver.
[EL Finer]: 2008.09.03 13:55:34.567--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.AuditLog] registered to be processed by
weaver.
[EL Finer]: 2008.09.03 13:55:34.567--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Forum] registered to be processed by wea
ver.
[EL Finer]: 2008.09.03 13:55:34.567--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.User] registered to be processed by weav
er.
[EL Finer]: 2008.09.03 13:55:34.567--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.RatingAggregate] registered to be proces
sed by weaver.
[EL Finer]: 2008.09.03 13:55:34.567--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.ArtMovement] registered to be processed
by weaver.
[EL Finer]: 2008.09.03 13:55:34.567--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.GalleryTag] registered to be processed b
y weaver.
[EL Finer]: 2008.09.03 13:55:34.567--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Group] registered to be processed by wea
ver.
[EL Finer]: 2008.09.03 13:55:34.583--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.RememberMe] registered to be processed b
y weaver.
[EL Finer]: 2008.09.03 13:55:34.583--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Price] registered to be processed by wea
ver.
[EL Finer]: 2008.09.03 13:55:34.583--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Commission] registered to be processed b
y weaver.
[EL Finer]: 2008.09.03 13:55:34.583--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Seller] registered to be processed by we
aver.
[EL Finer]: 2008.09.03 13:55:34.661--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Buyer] registered to be processed by wea
ver.
[EL Finer]: 2008.09.03 13:55:34.661--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Gallery] registered to be processed by w
eaver.
[EL Finer]: 2008.09.03 13:55:34.661--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.Rating] registered to be processed by we
aver.
[EL Finer]: 2008.09.03 13:55:34.661--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.ArtCategory] registered to be processed
by weaver.
[EL Finer]: 2008.09.03 13:55:34.661--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.CartItem] registered to be processed by
weaver.
[EL Finer]: 2008.09.03 13:55:34.661--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.RatingContainer] registered to be proces
sed by weaver.
[EL Finer]: 2008.09.03 13:55:34.677--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.DigitalContent] registered to be process
ed by weaver.
[EL Finer]: 2008.09.03 13:55:34.677--ServerSession(26829948)--Thread(Thread[main,5,main])--Class [da.db.model.DigitalItemTag] registered to be process
ed by weaver.
[EL Finest]: 2008.09.03 13:55:34.692--ServerSession(26829948)--Thread(Thread[main,5,main])--End predeploying Persistence Unit DigitalArtJPA; state Pre
deployed; factoryCount 1
[TomcatInstrumentableClassLoader@113a53d] error at org\springframework\transaction\aspectj\AbstractTransactionAspect.aj::0 class 'org.springframework.
transaction.aspectj.AbstractTransactionAspect' is already woven and has not been built in reweavable mode
[TomcatInstrumentableClassLoader@113a53d] error at org\springframework\transaction\aspectj\AnnotationTransactionAspect.aj::0 class 'org.springframewor
k.transaction.aspectj.AnnotationTransactionAspect' is already woven and has not been built in reweavable mode
[EL Finest]: 2008.09.03 13:55:35.724--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/User].
[EL Finest]: 2008.09.03 13:55:36.427--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/User].

[EL Finest]: 2008.09.03 13:55:36.427--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/User].

[EL Finest]: 2008.09.03 13:55:36.427--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/User]
.
[EL Finest]: 2008.09.03 13:55:36.427--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/User].
[EL Finest]: 2008.09.03 13:55:37.536--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Group].
[EL Finest]: 2008.09.03 13:55:37.552--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Group]
.
[EL Finest]: 2008.09.03 13:55:37.552--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Group]
.
[EL Finest]: 2008.09.03 13:55:37.552--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Group
].
[EL Finest]: 2008.09.03 13:55:37.552--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Group].
[EL Finest]: 2008.09.03 13:55:37.583--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Seller].
[EL Finest]: 2008.09.03 13:55:37.599--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Seller
].
[EL Finest]: 2008.09.03 13:55:37.599--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Seller
].
[EL Finest]: 2008.09.03 13:55:37.599--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Selle
r].
[EL Finest]: 2008.09.03 13:55:37.599--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Seller].
[EL Finest]: 2008.09.03 13:55:37.646--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Buyer].
[EL Finest]: 2008.09.03 13:55:37.646--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Buyer]
.
[EL Finest]: 2008.09.03 13:55:37.646--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Buyer]
.
[EL Finest]: 2008.09.03 13:55:37.646--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Buyer
].
[EL Finest]: 2008.09.03 13:55:37.646--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Buyer].
[EL Finest]: 2008.09.03 13:55:37.677--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Gallery].
[EL Finest]: 2008.09.03 13:55:37.692--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Galler
y].
[EL Finest]: 2008.09.03 13:55:37.692--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Galler
y].
[EL Finest]: 2008.09.03 13:55:37.692--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Galle
ry].
[EL Finest]: 2008.09.03 13:55:37.692--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Gallery].
[EL Finest]: 2008.09.03 13:55:37.708--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/GalleryTag].
[EL Finest]: 2008.09.03 13:55:37.708--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Galler
yTag].
[EL Finest]: 2008.09.03 13:55:37.708--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Galler
yTag].
[EL Finest]: 2008.09.03 13:55:37.708--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Galle
ryTag].
[EL Finest]: 2008.09.03 13:55:37.708--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/GalleryTag].
[EL Finest]: 2008.09.03 13:55:37.739--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/DigitalContent].
[EL Finest]: 2008.09.03 13:55:37.755--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Digita
lContent].
[EL Finest]: 2008.09.03 13:55:37.755--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Digita
lContent].
[EL Finest]: 2008.09.03 13:55:37.755--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Digit
alContent].
[EL Finest]: 2008.09.03 13:55:37.755--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/DigitalContent].
[EL Finest]: 2008.09.03 13:55:37.833--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/DigitalItem].
[EL Finest]: 2008.09.03 13:55:37.833--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Digita
lItem].
[EL Finest]: 2008.09.03 13:55:37.833--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Digita
lItem].
[EL Finest]: 2008.09.03 13:55:37.833--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Digit
alItem].
[EL Finest]: 2008.09.03 13:55:37.833--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/DigitalItem].
[EL Finest]: 2008.09.03 13:55:37.849--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/DigitalItemTag].
[EL Finest]: 2008.09.03 13:55:37.849--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Digita
lItemTag].
[EL Finest]: 2008.09.03 13:55:37.849--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Digita
lItemTag].
[EL Finest]: 2008.09.03 13:55:37.849--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Digit
alItemTag].
[EL Finest]: 2008.09.03 13:55:37.864--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/DigitalItemTag].
[EL Finest]: 2008.09.03 13:55:37.896--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Forum].
[EL Finest]: 2008.09.03 13:55:37.896--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Forum]
.
[EL Finest]: 2008.09.03 13:55:37.896--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Forum]
.
[EL Finest]: 2008.09.03 13:55:37.896--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Forum
].
[EL Finest]: 2008.09.03 13:55:37.896--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Forum].
[EL Finest]: 2008.09.03 13:55:37.927--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Post].
[EL Finest]: 2008.09.03 13:55:37.927--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Post].

[EL Finest]: 2008.09.03 13:55:37.927--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Post].

[EL Finest]: 2008.09.03 13:55:37.927--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Post]
.
[EL Finest]: 2008.09.03 13:55:37.927--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Post].
[EL Finest]: 2008.09.03 13:55:37.942--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Rating].
[EL Finest]: 2008.09.03 13:55:37.942--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Rating
].
[EL Finest]: 2008.09.03 13:55:37.942--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Rating
].
[EL Finest]: 2008.09.03 13:55:37.958--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Ratin
g].
[EL Finest]: 2008.09.03 13:55:37.958--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Rating].
[EL Finest]: 2008.09.03 13:55:37.974--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/RatingContainer].
[EL Finest]: 2008.09.03 13:55:37.974--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Rating
Container].
[EL Finest]: 2008.09.03 13:55:37.974--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Rating
Container].
[EL Finest]: 2008.09.03 13:55:37.974--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Ratin
gContainer].
[EL Finest]: 2008.09.03 13:55:37.974--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/RatingContainer].
[EL Finest]: 2008.09.03 13:55:38.005--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/AuditLog].
[EL Finest]: 2008.09.03 13:55:38.005--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/AuditL
og].
[EL Finest]: 2008.09.03 13:55:38.005--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/AuditL
og].
[EL Finest]: 2008.09.03 13:55:38.005--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Audit
Log].
[EL Finest]: 2008.09.03 13:55:38.005--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/AuditLog].
[EL Finest]: 2008.09.03 13:55:38.036--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Commission].
[EL Finest]: 2008.09.03 13:55:38.036--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Commis
sion].
[EL Finest]: 2008.09.03 13:55:38.036--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Commis
sion].
[EL Finest]: 2008.09.03 13:55:38.036--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Commi
ssion].
[EL Finest]: 2008.09.03 13:55:38.036--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Commission].
[EL Finest]: 2008.09.03 13:55:38.067--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/CartItem].
[EL Finest]: 2008.09.03 13:55:38.083--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/CartIt
em].
[EL Finest]: 2008.09.03 13:55:38.083--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/CartIt
em].
[EL Finest]: 2008.09.03 13:55:38.083--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/CartI
tem].
[EL Finest]: 2008.09.03 13:55:38.083--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/CartItem].
[EL Finest]: 2008.09.03 13:55:38.099--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/ArtMovement].
[EL Finest]: 2008.09.03 13:55:38.099--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/ArtMov
ement].
[EL Finest]: 2008.09.03 13:55:38.099--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/ArtMov
ement].
[EL Finest]: 2008.09.03 13:55:38.099--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/ArtMo
vement].
[EL Finest]: 2008.09.03 13:55:38.099--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/ArtMovement].
[EL Finest]: 2008.09.03 13:55:38.114--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/ArtCategory].
[EL Finest]: 2008.09.03 13:55:38.130--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/ArtCat
egory].
[EL Finest]: 2008.09.03 13:55:38.130--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/ArtCat
egory].
[EL Finest]: 2008.09.03 13:55:38.130--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/ArtCa
tegory].
[EL Finest]: 2008.09.03 13:55:38.130--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/ArtCategory].
[EL Finest]: 2008.09.03 13:55:38.161--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/RememberMe].
[EL Finest]: 2008.09.03 13:55:38.161--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Rememb
erMe].
[EL Finest]: 2008.09.03 13:55:38.161--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Rememb
erMe].
[EL Finest]: 2008.09.03 13:55:38.161--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Remem
berMe].
[EL Finest]: 2008.09.03 13:55:38.161--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/RememberMe].
[EL Finest]: 2008.09.03 13:55:38.958--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/RatingAggregate].
[EL Finest]: 2008.09.03 13:55:38.958--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Rating
Aggregate].
[EL Finest]: 2008.09.03 13:55:38.958--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Rating
Aggregate].
[EL Finest]: 2008.09.03 13:55:38.958--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Ratin
gAggregate].
[EL Finest]: 2008.09.03 13:55:38.958--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/RatingAggregate].
63390 [main] INFO da.web.service.ArtCategoriesInitialization - Category = Art Movements
[EL Finest]: 2008.09.03 13:55:40.317--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin deploying Persistence Unit DigitalArtJPA; state Pred
eployed; factoryCount 1
[EL Finest]: 2008.09.03 13:55:40.333--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin weaver class transformer processing class [da/db/mod
el/Price].
[EL Finest]: 2008.09.03 13:55:40.333--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved persistence (PersistenceEntity) [da/db/model/Price]
.
[EL Finest]: 2008.09.03 13:55:40.333--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved change tracking (ChangeTracker) [da/db/model/Price]
.
[EL Finest]: 2008.09.03 13:55:40.333--ServerSession(26829948)--Thread(Thread[main,5,main])--Weaved fetch groups (FetchGroupTracker) [da/db/model/Price
].
[EL Finest]: 2008.09.03 13:55:40.333--ServerSession(26829948)--Thread(Thread[main,5,main])--End weaver class transformer processing class [da/db/model
/Price].
[EL Finest]: 2008.09.03 13:55:40.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.logging.level; value=FINEST; translat
ed value=FINEST
[EL Finest]: 2008.09.03 13:55:40.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.logging.exceptions; value=true
[EL Finest]: 2008.09.03 13:55:40.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.logging.level; value=FINEST; translat
ed value=FINEST
[EL Finest]: 2008.09.03 13:55:40.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.logging.exceptions; value=true
[EL Finest]: 2008.09.03 13:55:40.896--ServerSession(26829948)--Thread(Thread[main,5,main])--property=eclipselink.target-database; value=org.eclipse.pe
rsistence.platform.database.DerbyPlatform
[EL Info]: 2008.09.03 13:55:41.067--ServerSession(26829948)--Thread(Thread[main,5,main])--EclipseLink, version: Eclipse Persistence Services - 1.1 (Bu
ild SNAPSHOT-20080901)
[EL Config]: 2008.09.03 13:55:41.614--ServerSession(26829948)--Connection(18958619)--Thread(Thread[main,5,main])--connecting(DatabaseLogin(
        platform=>DerbyPlatform
        user name=> ""
        connector=>JNDIConnector datasource name=>null
))
[EL Config]: 2008.09.03 13:55:46.005--ServerSession(26829948)--Connection(5306332)--Thread(Thread[main,5,main])--Connected: jdbc:derby://localhost:152
7/digitalart;create=true
        User: APP
        Database: Apache Derby  Version: 10.4.1.3 - (648739)
        Driver: Apache Derby Network Client JDBC Driver  Version: 10.4.1.3 - (648739)
[EL Config]: 2008.09.03 13:55:46.005--ServerSession(26829948)--Connection(29406645)--Thread(Thread[main,5,main])--connecting(DatabaseLogin(
        platform=>DerbyPlatform
        user name=> ""
        connector=>JNDIConnector datasource name=>null
))
[EL Config]: 2008.09.03 13:55:46.005--ServerSession(26829948)--Connection(14268785)--Thread(Thread[main,5,main])--Connected: jdbc:derby://localhost:15
27/digitalart;create=true
        User: APP
        Database: Apache Derby  Version: 10.4.1.3 - (648739)
        Driver: Apache Derby Network Client JDBC Driver  Version: 10.4.1.3 - (648739)
[EL Finest]: 2008.09.03 13:55:46.442--ServerSession(26829948)--Thread(Thread[main,5,main])--sequencing connected, state is Preallocation_Transaction_N
oAccessor_State
[EL Finest]: 2008.09.03 13:55:46.442--ServerSession(26829948)--Thread(Thread[main,5,main])--sequence : preallocation size 50
[EL Finest]: 2008.09.03 13:55:46.442--ServerSession(26829948)--Thread(Thread[main,5,main])--sequence SEQ_GEN: preallocation size 50
[EL Info]: 2008.09.03 13:55:46.974--ServerSession(26829948)--Thread(Thread[main,5,main])--file:/C:/development/apache-tomcat-6.0.14/webapps/DigitalArt
Web/WEB-INF/lib/da-db-0.0.1-SNAPSHOT.jar-DigitalArtJPA login successful
[EL Finest]: 2008.09.03 13:55:48.474--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:48.489--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:48.489--ServerSession(26829948)--Connection(16080524)--Thread(Thread[main,5,main])--CREATE TABLE AUDITLOG (ID BIGINT NOT N
ULL, USERNAME VARCHAR(255), SESSIONID VARCHAR(255), ACTION VARCHAR(255), MESSAGE VARCHAR(255), IP VARCHAR(255), USERAGENT VARCHAR(255), TIMESTAMP TIME
STAMP, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:48.880--Thread(Thread[main,5,main])--The table (AUDITLOG) is created.
[EL Finest]: 2008.09.03 13:55:48.880--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:48.880--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:48.880--ServerSession(26829948)--Connection(24187998)--Thread(Thread[main,5,main])--CREATE TABLE PRICE (ID BIGINT NOT NULL
, CURRENCY VARCHAR(255), PRICE FLOAT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:49.224--Thread(Thread[main,5,main])--The table (PRICE) is created.
[EL Finest]: 2008.09.03 13:55:49.224--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:49.224--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:49.224--ServerSession(26829948)--Connection(17535870)--Thread(Thread[main,5,main])--CREATE TABLE GROUPS_GROUPS (Group_ID B
IGINT NOT NULL, subgroups_ID BIGINT NOT NULL, PRIMARY KEY (Group_ID, subgroups_ID))
[EL Finest]: 2008.09.03 13:55:49.614--Thread(Thread[main,5,main])--The table (GROUPS_GROUPS) is created.
[EL Finest]: 2008.09.03 13:55:49.614--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:49.630--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:49.630--ServerSession(26829948)--Connection(21907899)--Thread(Thread[main,5,main])--CREATE TABLE SELLER (ID BIGINT NOT NUL
L, COMMISSIONABLE SMALLINT DEFAULT 0, USER_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:50.020--Thread(Thread[main,5,main])--The table (SELLER) is created.
[EL Finest]: 2008.09.03 13:55:50.020--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:50.020--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:50.020--ServerSession(26829948)--Connection(20347994)--Thread(Thread[main,5,main])--CREATE TABLE GROUPS_USERS (groups_ID B
IGINT NOT NULL, users_ID BIGINT NOT NULL, PRIMARY KEY (groups_ID, users_ID))
[EL Finest]: 2008.09.03 13:55:50.427--Thread(Thread[main,5,main])--The table (GROUPS_USERS) is created.
[EL Finest]: 2008.09.03 13:55:50.427--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:50.427--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:50.427--ServerSession(26829948)--Connection(11752414)--Thread(Thread[main,5,main])--CREATE TABLE GALLERY (ID BIGINT NOT NU
LL, NAME VARCHAR(255), OWNER_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:50.927--Thread(Thread[main,5,main])--The table (GALLERY) is created.
[EL Finest]: 2008.09.03 13:55:50.927--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:50.927--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:50.927--ServerSession(26829948)--Connection(13538103)--Thread(Thread[main,5,main])--CREATE TABLE DIGITALITEM_DIGITALCONTEN
T (DigitalItem_ID BIGINT NOT NULL, publicimages_ID BIGINT NOT NULL, PRIMARY KEY (DigitalItem_ID, publicimages_ID))
[EL Finest]: 2008.09.03 13:55:51.302--Thread(Thread[main,5,main])--The table (DIGITALITEM_DIGITALCONTENT) is created.
[EL Finest]: 2008.09.03 13:55:51.302--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:51.302--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:51.302--ServerSession(26829948)--Connection(3706629)--Thread(Thread[main,5,main])--CREATE TABLE SELLER_DIGITALITEM (Seller
_ID BIGINT NOT NULL, images_ID BIGINT NOT NULL, PRIMARY KEY (Seller_ID, images_ID))
[EL Finest]: 2008.09.03 13:55:51.708--Thread(Thread[main,5,main])--The table (SELLER_DIGITALITEM) is created.
[EL Finest]: 2008.09.03 13:55:51.708--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:51.708--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:51.708--ServerSession(26829948)--Connection(17849978)--Thread(Thread[main,5,main])--CREATE TABLE USERS (ID BIGINT NOT NULL
, PASSWORD VARCHAR(255), USERNAME VARCHAR(255), EMAIL VARCHAR(255), FIRSTNAME VARCHAR(255), LASTNAME VARCHAR(255), LOCKED SMALLINT DEFAULT 0, PRIMARY
KEY (ID))
[EL Finest]: 2008.09.03 13:55:52.130--Thread(Thread[main,5,main])--The table (USERS) is created.
[EL Finest]: 2008.09.03 13:55:52.130--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:52.130--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:52.130--ServerSession(26829948)--Connection(12166727)--Thread(Thread[main,5,main])--CREATE TABLE RATINGAGGREGATE (ID BIGIN
T NOT NULL, NUMBEROFRATINGS BIGINT, SUMOFRATINGS BIGINT, RATING FLOAT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:52.473--Thread(Thread[main,5,main])--The table (RATINGAGGREGATE) is created.
[EL Finest]: 2008.09.03 13:55:52.473--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:52.473--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:52.473--ServerSession(26829948)--Connection(24649693)--Thread(Thread[main,5,main])--CREATE TABLE ARTMOVEMENT (ID BIGINT NO
T NULL, NAME VARCHAR(255), CATEGORY_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:52.927--Thread(Thread[main,5,main])--The table (ARTMOVEMENT) is created.
[EL Finest]: 2008.09.03 13:55:52.927--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:52.927--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:52.927--ServerSession(26829948)--Connection(4831928)--Thread(Thread[main,5,main])--CREATE TABLE DIGITALCONTENT (ID BIGINT
NOT NULL, CONTENT BLOB(64000), NAME VARCHAR(255), MIMETYPE VARCHAR(255), CREATIONDATE TIMESTAMP, DIGITALITEM_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:53.255--Thread(Thread[main,5,main])--The table (DIGITALCONTENT) is created.
[EL Finest]: 2008.09.03 13:55:53.255--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:53.255--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:53.255--ServerSession(26829948)--Connection(18196555)--Thread(Thread[main,5,main])--CREATE TABLE SELLER_COMMISSION (Seller
_ID BIGINT NOT NULL, commissions_ID BIGINT NOT NULL, PRIMARY KEY (Seller_ID, commissions_ID))
[EL Finest]: 2008.09.03 13:55:53.630--Thread(Thread[main,5,main])--The table (SELLER_COMMISSION) is created.
[EL Finest]: 2008.09.03 13:55:53.630--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:53.630--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:53.630--ServerSession(26829948)--Connection(20052555)--Thread(Thread[main,5,main])--CREATE TABLE GROUPS (ID BIGINT NOT NUL
L, NAME VARCHAR(255), PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:54.083--Thread(Thread[main,5,main])--The table (GROUPS) is created.
[EL Finest]: 2008.09.03 13:55:54.083--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:54.083--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:54.083--ServerSession(26829948)--Connection(13698619)--Thread(Thread[main,5,main])--CREATE TABLE FORUM_POST (Forum_ID BIGI
NT NOT NULL, post_ID BIGINT NOT NULL, PRIMARY KEY (Forum_ID, post_ID))
[EL Finest]: 2008.09.03 13:55:54.473--Thread(Thread[main,5,main])--The table (FORUM_POST) is created.
[EL Finest]: 2008.09.03 13:55:54.473--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:54.473--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:54.473--ServerSession(26829948)--Connection(27061544)--Thread(Thread[main,5,main])--CREATE TABLE DIGITALITEMTAG (ID BIGINT
 NOT NULL, TAGVALUE VARCHAR(255), ITEM_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:54.895--Thread(Thread[main,5,main])--The table (DIGITALITEMTAG) is created.
[EL Finest]: 2008.09.03 13:55:54.895--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:54.895--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:54.895--ServerSession(26829948)--Connection(25700192)--Thread(Thread[main,5,main])--CREATE TABLE POST_POST (Post_ID BIGINT
 NOT NULL, childPosts_ID BIGINT NOT NULL, PRIMARY KEY (Post_ID, childPosts_ID))
[EL Finest]: 2008.09.03 13:55:55.302--Thread(Thread[main,5,main])--The table (POST_POST) is created.
[EL Finest]: 2008.09.03 13:55:55.302--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:55.302--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:55.302--ServerSession(26829948)--Connection(13562509)--Thread(Thread[main,5,main])--CREATE TABLE ARTCATEGORY (ID BIGINT NO
T NULL, NAME VARCHAR(255), PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:55.630--Thread(Thread[main,5,main])--The table (ARTCATEGORY) is created.
[EL Finest]: 2008.09.03 13:55:55.630--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:55.630--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:55.630--ServerSession(26829948)--Connection(25765294)--Thread(Thread[main,5,main])--CREATE TABLE COMMISSION_SELLER (FK_COM
MISSION_ID BIGINT NOT NULL, FK_USER_ID BIGINT NOT NULL, PRIMARY KEY (FK_COMMISSION_ID, FK_USER_ID))
[EL Finest]: 2008.09.03 13:55:56.067--Thread(Thread[main,5,main])--The table (COMMISSION_SELLER) is created.
[EL Finest]: 2008.09.03 13:55:56.067--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:56.067--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:56.067--ServerSession(26829948)--Connection(26250735)--Thread(Thread[main,5,main])--CREATE TABLE COMMISSION (ID BIGINT NOT
 NULL, FORUM_ID BIGINT, BUYER_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:56.473--Thread(Thread[main,5,main])--The table (COMMISSION) is created.
[EL Finest]: 2008.09.03 13:55:56.473--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:56.473--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:56.473--ServerSession(26829948)--Connection(22494080)--Thread(Thread[main,5,main])--CREATE TABLE CARTITEM (ID BIGINT NOT N
ULL, CREATIONDATE TIMESTAMP, QUANTITY INTEGER, USER_ID BIGINT, IMAGE_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:56.958--Thread(Thread[main,5,main])--The table (CARTITEM) is created.
[EL Finest]: 2008.09.03 13:55:56.958--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:56.958--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:56.958--ServerSession(26829948)--Connection(6804890)--Thread(Thread[main,5,main])--CREATE TABLE DIGITALITEM (ID BIGINT NOT
 NULL, NAME VARCHAR(255), DESCRIPTION VARCHAR(255), CREATIONDATE TIMESTAMP, GALLERY_ID BIGINT, SELLER_ID BIGINT, PRICE_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:57.458--Thread(Thread[main,5,main])--The table (DIGITALITEM) is created.
[EL Finest]: 2008.09.03 13:55:57.458--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:57.458--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:57.458--ServerSession(26829948)--Connection(20904080)--Thread(Thread[main,5,main])--CREATE TABLE SELLER_GALLERY (Seller_ID
 BIGINT NOT NULL, galleries_ID BIGINT NOT NULL, PRIMARY KEY (Seller_ID, galleries_ID))
[EL Finest]: 2008.09.03 13:55:57.880--Thread(Thread[main,5,main])--The table (SELLER_GALLERY) is created.
[EL Finest]: 2008.09.03 13:55:57.880--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:57.880--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:57.880--ServerSession(26829948)--Connection(18990971)--Thread(Thread[main,5,main])--CREATE TABLE POST (ID BIGINT NOT NULL,
 CREATIONTIME TIMESTAMP, MESSAGE VARCHAR(255), MODIFICATIONTIME TIMESTAMP, TITLE VARCHAR(255), CREATEDBY_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:58.302--Thread(Thread[main,5,main])--The table (POST) is created.
[EL Finest]: 2008.09.03 13:55:58.302--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:58.302--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:58.302--ServerSession(26829948)--Connection(20533924)--Thread(Thread[main,5,main])--CREATE TABLE ARTCATEGORY_ARTMOVEMENT (
ArtCategory_ID BIGINT NOT NULL, movements_ID BIGINT NOT NULL, PRIMARY KEY (ArtCategory_ID, movements_ID))
[EL Finest]: 2008.09.03 13:55:58.677--Thread(Thread[main,5,main])--The table (ARTCATEGORY_ARTMOVEMENT) is created.
[EL Finest]: 2008.09.03 13:55:58.677--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:58.677--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:58.677--ServerSession(26829948)--Connection(19315163)--Thread(Thread[main,5,main])--CREATE TABLE BUYER (ID BIGINT NOT NULL
, USER_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:59.411--Thread(Thread[main,5,main])--The table (BUYER) is created.
[EL Finest]: 2008.09.03 13:55:59.411--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:59.411--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:59.411--ServerSession(26829948)--Connection(7878289)--Thread(Thread[main,5,main])--CREATE TABLE RATINGCONTAINER (ID BIGINT
 NOT NULL, IMAGE_ID BIGINT, GALLERY_ID BIGINT, SELLER_ID BIGINT, AGGREGATERATING_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:55:59.770--Thread(Thread[main,5,main])--The table (RATINGCONTAINER) is created.
[EL Finest]: 2008.09.03 13:55:59.770--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:55:59.770--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:55:59.770--ServerSession(26829948)--Connection(4622765)--Thread(Thread[main,5,main])--CREATE TABLE COMMISSION_MOVEMENT (Commi
ssion_ID BIGINT NOT NULL, movements_ID BIGINT NOT NULL, PRIMARY KEY (Commission_ID, movements_ID))
[EL Finest]: 2008.09.03 13:56:00.270--Thread(Thread[main,5,main])--The table (COMMISSION_MOVEMENT) is created.
[EL Finest]: 2008.09.03 13:56:00.270--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:00.270--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:00.270--ServerSession(26829948)--Connection(637284)--Thread(Thread[main,5,main])--CREATE TABLE GALLERYTAG (ID BIGINT NOT N
ULL, TAGVALUE VARCHAR(255), GALLERY_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:56:00.677--Thread(Thread[main,5,main])--The table (GALLERYTAG) is created.
[EL Finest]: 2008.09.03 13:56:00.677--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:00.677--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:00.677--ServerSession(26829948)--Connection(27674808)--Thread(Thread[main,5,main])--CREATE TABLE REMEMBERME (ID BIGINT NOT
 NULL, TOKEN VARCHAR(255), USER_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:56:01.083--Thread(Thread[main,5,main])--The table (REMEMBERME) is created.
[EL Finest]: 2008.09.03 13:56:01.083--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:01.083--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:01.098--ServerSession(26829948)--Connection(1617473)--Thread(Thread[main,5,main])--CREATE TABLE RATING (ID BIGINT NOT NULL
, VALUE INTEGER, USERWHOVOTED_ID BIGINT, CONTAINER_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:56:01.489--Thread(Thread[main,5,main])--The table (RATING) is created.
[EL Finest]: 2008.09.03 13:56:01.489--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:01.489--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:01.489--ServerSession(26829948)--Connection(10702029)--Thread(Thread[main,5,main])--CREATE TABLE FORUM (ID BIGINT NOT NULL
, NAME VARCHAR(255), GALLERY_ID BIGINT, IMAGE_ID BIGINT, PRIMARY KEY (ID))
[EL Finest]: 2008.09.03 13:56:01.895--Thread(Thread[main,5,main])--The table (FORUM) is created.
[EL Finest]: 2008.09.03 13:56:01.895--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:01.895--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:01.895--ServerSession(26829948)--Connection(9727205)--Thread(Thread[main,5,main])--ALTER TABLE GROUPS_GROUPS ADD CONSTRAIN
T GRUPSGROUPSGroupID FOREIGN KEY (Group_ID) REFERENCES GROUPS (ID)
[EL Fine]: 2008.09.03 13:56:02.020--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.130--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'GROUPS_GROUPS' because it does not exist.
Error Code: -1
Call: ALTER TABLE GROUPS_GROUPS ADD CONSTRAINT GRUPSGROUPSGroupID FOREIGN KEY (Group_ID) REFERENCES GROUPS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.161--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.161--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.161--ServerSession(26829948)--Connection(15758870)--Thread(Thread[main,5,main])--ALTER TABLE SELLER ADD CONSTRAINT FK_S
ELLER_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS (ID)
[EL Fine]: 2008.09.03 13:56:02.161--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'SELLER' because it does not exist.
Error Code: -1
Call: ALTER TABLE SELLER ADD CONSTRAINT FK_SELLER_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Connection(2678706)--Thread(Thread[main,5,main])--ALTER TABLE GROUPS_USERS ADD CONSTRAINT
 GROUPSUSERSusersID FOREIGN KEY (users_ID) REFERENCES USERS (ID)
[EL Fine]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'GROUPS_USERS' because it does not exist.
Error Code: -1
Call: ALTER TABLE GROUPS_USERS ADD CONSTRAINT GROUPSUSERSusersID FOREIGN KEY (users_ID) REFERENCES USERS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.176--ServerSession(26829948)--Connection(20372160)--Thread(Thread[main,5,main])--ALTER TABLE GALLERY ADD CONSTRAINT GAL
LERY_OWNER_ID FOREIGN KEY (OWNER_ID) REFERENCES SELLER (ID)
[EL Fine]: 2008.09.03 13:56:02.192--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.192--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'GALLERY' because it does not exist.
Error Code: -1
Call: ALTER TABLE GALLERY ADD CONSTRAINT GALLERY_OWNER_ID FOREIGN KEY (OWNER_ID) REFERENCES SELLER (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.192--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.192--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.208--ServerSession(26829948)--Connection(33244066)--Thread(Thread[main,5,main])--ALTER TABLE DIGITALITEM_DIGITALCONTENT
 ADD CONSTRAINT DGTLTMDGTLCDgtltmD FOREIGN KEY (DigitalItem_ID) REFERENCES DIGITALITEM (ID)
[EL Fine]: 2008.09.03 13:56:02.286--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.286--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'DIGITALITEM_DIGITALCONTENT' because it does not exist.
Error Code: -1
Call: ALTER TABLE DIGITALITEM_DIGITALCONTENT ADD CONSTRAINT DGTLTMDGTLCDgtltmD FOREIGN KEY (DigitalItem_ID) REFERENCES DIGITALITEM (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.286--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.286--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.286--ServerSession(26829948)--Connection(3268300)--Thread(Thread[main,5,main])--ALTER TABLE SELLER_DIGITALITEM ADD CONS
TRAINT SLLRDGITALITEMmgsD FOREIGN KEY (images_ID) REFERENCES DIGITALITEM (ID)
[EL Fine]: 2008.09.03 13:56:02.301--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.317--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'SELLER_DIGITALITEM' because it does not exist.
Error Code: -1
Call: ALTER TABLE SELLER_DIGITALITEM ADD CONSTRAINT SLLRDGITALITEMmgsD FOREIGN KEY (images_ID) REFERENCES DIGITALITEM (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.317--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.333--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.333--ServerSession(26829948)--Connection(23244506)--Thread(Thread[main,5,main])--ALTER TABLE ARTMOVEMENT ADD CONSTRAINT
 RTMOVEMENTCTGORYID FOREIGN KEY (CATEGORY_ID) REFERENCES ARTCATEGORY (ID)
[EL Fine]: 2008.09.03 13:56:02.348--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.348--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'ARTMOVEMENT' because it does not exist.
Error Code: -1
Call: ALTER TABLE ARTMOVEMENT ADD CONSTRAINT RTMOVEMENTCTGORYID FOREIGN KEY (CATEGORY_ID) REFERENCES ARTCATEGORY (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.348--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.348--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.348--ServerSession(26829948)--Connection(17106476)--Thread(Thread[main,5,main])--ALTER TABLE DIGITALCONTENT ADD CONSTRA
INT DGTLCNTENTDGTLTMID FOREIGN KEY (DIGITALITEM_ID) REFERENCES DIGITALITEM (ID)
[EL Fine]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'DIGITALCONTENT' because it does not exist.
Error Code: -1
Call: ALTER TABLE DIGITALCONTENT ADD CONSTRAINT DGTLCNTENTDGTLTMID FOREIGN KEY (DIGITALITEM_ID) REFERENCES DIGITALITEM (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Connection(31776317)--Thread(Thread[main,5,main])--ALTER TABLE SELLER_COMMISSION ADD CONS
TRAINT SLLRCMMISSIONSllrD FOREIGN KEY (Seller_ID) REFERENCES SELLER (ID)
[EL Fine]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'SELLER_COMMISSION' because it does not exist.
Error Code: -1
Call: ALTER TABLE SELLER_COMMISSION ADD CONSTRAINT SLLRCMMISSIONSllrD FOREIGN KEY (Seller_ID) REFERENCES SELLER (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.364--ServerSession(26829948)--Connection(16805869)--Thread(Thread[main,5,main])--ALTER TABLE FORUM_POST ADD CONSTRAINT
FORUM_POSTForum_ID FOREIGN KEY (Forum_ID) REFERENCES FORUM (ID)
[EL Fine]: 2008.09.03 13:56:02.380--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.380--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'FORUM_POST' because it does not exist.
Error Code: -1
Call: ALTER TABLE FORUM_POST ADD CONSTRAINT FORUM_POSTForum_ID FOREIGN KEY (Forum_ID) REFERENCES FORUM (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.380--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.380--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.380--ServerSession(26829948)--Connection(3508177)--Thread(Thread[main,5,main])--ALTER TABLE DIGITALITEMTAG ADD CONSTRAI
NT DGITALITEMTAGTEMID FOREIGN KEY (ITEM_ID) REFERENCES DIGITALITEM (ID)
[EL Fine]: 2008.09.03 13:56:02.380--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'DIGITALITEMTAG' because it does not exist.
Error Code: -1
Call: ALTER TABLE DIGITALITEMTAG ADD CONSTRAINT DGITALITEMTAGTEMID FOREIGN KEY (ITEM_ID) REFERENCES DIGITALITEM (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Connection(32532484)--Thread(Thread[main,5,main])--ALTER TABLE POST_POST ADD CONSTRAINT P
OST_POST_Post_ID FOREIGN KEY (Post_ID) REFERENCES POST (ID)
[EL Fine]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'POST_POST' because it does not exist.
Error Code: -1
Call: ALTER TABLE POST_POST ADD CONSTRAINT POST_POST_Post_ID FOREIGN KEY (Post_ID) REFERENCES POST (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Connection(10680175)--Thread(Thread[main,5,main])--ALTER TABLE COMMISSION_SELLER ADD CONS
TRAINT CMMSSONSELLERFKSRD FOREIGN KEY (FK_USER_ID) REFERENCES SELLER (ID)
[EL Fine]: 2008.09.03 13:56:02.395--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.411--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'COMMISSION_SELLER' because it does not exist.
Error Code: -1
Call: ALTER TABLE COMMISSION_SELLER ADD CONSTRAINT CMMSSONSELLERFKSRD FOREIGN KEY (FK_USER_ID) REFERENCES SELLER (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.411--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.411--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.411--ServerSession(26829948)--Connection(7610018)--Thread(Thread[main,5,main])--ALTER TABLE COMMISSION ADD CONSTRAINT C
OMMISSIONBUYER_ID FOREIGN KEY (BUYER_ID) REFERENCES BUYER (ID)
[EL Fine]: 2008.09.03 13:56:02.411--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.411--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'COMMISSION' because it does not exist.
Error Code: -1
Call: ALTER TABLE COMMISSION ADD CONSTRAINT COMMISSIONBUYER_ID FOREIGN KEY (BUYER_ID) REFERENCES BUYER (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Connection(4561947)--Thread(Thread[main,5,main])--ALTER TABLE CARTITEM ADD CONSTRAINT CAR
TITEM_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS (ID)
[EL Fine]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'CARTITEM' because it does not exist.
Error Code: -1
Call: ALTER TABLE CARTITEM ADD CONSTRAINT CARTITEM_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Connection(16360567)--Thread(Thread[main,5,main])--ALTER TABLE DIGITALITEM ADD CONSTRAINT
 DIGITALITEMPRICEID FOREIGN KEY (PRICE_ID) REFERENCES PRICE (ID)
[EL Fine]: 2008.09.03 13:56:02.426--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.442--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'DIGITALITEM' because it does not exist.
Error Code: -1
Call: ALTER TABLE DIGITALITEM ADD CONSTRAINT DIGITALITEMPRICEID FOREIGN KEY (PRICE_ID) REFERENCES PRICE (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.630--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.630--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.661--ServerSession(26829948)--Connection(12905690)--Thread(Thread[main,5,main])--ALTER TABLE SELLER_GALLERY ADD CONSTRA
INT SLLRGLLERYgllresID FOREIGN KEY (galleries_ID) REFERENCES GALLERY (ID)
[EL Fine]: 2008.09.03 13:56:02.661--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.676--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'SELLER_GALLERY' because it does not exist.
Error Code: -1
Call: ALTER TABLE SELLER_GALLERY ADD CONSTRAINT SLLRGLLERYgllresID FOREIGN KEY (galleries_ID) REFERENCES GALLERY (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.676--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.692--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.692--ServerSession(26829948)--Connection(5321461)--Thread(Thread[main,5,main])--ALTER TABLE POST ADD CONSTRAINT POST_CR
EATEDBY_ID FOREIGN KEY (CREATEDBY_ID) REFERENCES USERS (ID)
[EL Fine]: 2008.09.03 13:56:02.692--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.708--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'POST' because it does not exist.
Error Code: -1
Call: ALTER TABLE POST ADD CONSTRAINT POST_CREATEDBY_ID FOREIGN KEY (CREATEDBY_ID) REFERENCES USERS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.708--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.708--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.723--ServerSession(26829948)--Connection(12543717)--Thread(Thread[main,5,main])--ALTER TABLE ARTCATEGORY_ARTMOVEMENT AD
D CONSTRAINT RTCTGRYRTMVmvmntsD FOREIGN KEY (movements_ID) REFERENCES ARTMOVEMENT (ID)
[EL Fine]: 2008.09.03 13:56:02.723--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.739--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'ARTCATEGORY_ARTMOVEMENT' because it does not exist.
Error Code: -1
Call: ALTER TABLE ARTCATEGORY_ARTMOVEMENT ADD CONSTRAINT RTCTGRYRTMVmvmntsD FOREIGN KEY (movements_ID) REFERENCES ARTMOVEMENT (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.739--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.739--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.739--ServerSession(26829948)--Connection(30452884)--Thread(Thread[main,5,main])--ALTER TABLE BUYER ADD CONSTRAINT FK_BU
YER_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS (ID)
[EL Fine]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'BUYER' because it does not exist.
Error Code: -1
Call: ALTER TABLE BUYER ADD CONSTRAINT FK_BUYER_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Connection(31941218)--Thread(Thread[main,5,main])--ALTER TABLE RATINGCONTAINER ADD CONSTR
AINT RTNGCNTAINERGLLRYD FOREIGN KEY (GALLERY_ID) REFERENCES GALLERY (ID)
[EL Fine]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'RATINGCONTAINER' because it does not exist.
Error Code: -1
Call: ALTER TABLE RATINGCONTAINER ADD CONSTRAINT RTNGCNTAINERGLLRYD FOREIGN KEY (GALLERY_ID) REFERENCES GALLERY (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.755--ServerSession(26829948)--Connection(4268987)--Thread(Thread[main,5,main])--ALTER TABLE COMMISSION_MOVEMENT ADD CON
STRAINT CMMSSNMVMNTmvmntsD FOREIGN KEY (movements_ID) REFERENCES ARTMOVEMENT (ID)
[EL Fine]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'COMMISSION_MOVEMENT' because it does not exist.
Error Code: -1
Call: ALTER TABLE COMMISSION_MOVEMENT ADD CONSTRAINT CMMSSNMVMNTmvmntsD FOREIGN KEY (movements_ID) REFERENCES ARTMOVEMENT (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Connection(28920353)--Thread(Thread[main,5,main])--ALTER TABLE GALLERYTAG ADD CONSTRAINT
GLLERYTAGGALLERYID FOREIGN KEY (GALLERY_ID) REFERENCES GALLERY (ID)
[EL Fine]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'GALLERYTAG' because it does not exist.
Error Code: -1
Call: ALTER TABLE GALLERYTAG ADD CONSTRAINT GLLERYTAGGALLERYID FOREIGN KEY (GALLERY_ID) REFERENCES GALLERY (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.770--ServerSession(26829948)--Connection(8521369)--Thread(Thread[main,5,main])--ALTER TABLE REMEMBERME ADD CONSTRAINT R
EMEMBERME_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS (ID)
[EL Fine]: 2008.09.03 13:56:02.786--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.786--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'REMEMBERME' because it does not exist.
Error Code: -1
Call: ALTER TABLE REMEMBERME ADD CONSTRAINT REMEMBERME_USER_ID FOREIGN KEY (USER_ID) REFERENCES USERS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.786--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.786--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.786--ServerSession(26829948)--Connection(9679868)--Thread(Thread[main,5,main])--ALTER TABLE RATING ADD CONSTRAINT RTING
SERWHOVOTEDID FOREIGN KEY (USERWHOVOTED_ID) REFERENCES USERS (ID)
[EL Fine]: 2008.09.03 13:56:02.786--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'RATING' because it does not exist.
Error Code: -1
Call: ALTER TABLE RATING ADD CONSTRAINT RTINGSERWHOVOTEDID FOREIGN KEY (USERWHOVOTED_ID) REFERENCES USERS (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Connection(24739957)--Thread(Thread[main,5,main])--ALTER TABLE FORUM ADD CONSTRAINT FK_FO
RUM_IMAGE_ID FOREIGN KEY (IMAGE_ID) REFERENCES DIGITALITEM (ID)
[EL Fine]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: 'ALTER TABLE' cannot be performed on 'FORUM' because it does not exist.
Error Code: -1
Call: ALTER TABLE FORUM ADD CONSTRAINT FK_FORUM_IMAGE_ID FOREIGN KEY (IMAGE_ID) REFERENCES DIGITALITEM (ID)
Query: DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataModifyQuery()
[EL Finest]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:02.801--ServerSession(26829948)--Connection(23100890)--Thread(Thread[main,5,main])--CREATE TABLE SEQUENCE (SEQ_NAME VARCHA
R(50) NOT NULL, SEQ_COUNT DECIMAL, PRIMARY KEY (SEQ_NAME))
[EL Finest]: 2008.09.03 13:56:03.130--ServerSession(26829948)--Thread(Thread[main,5,main])--Execute query DataReadQuery()
[EL Finest]: 2008.09.03 13:56:03.130--ServerSession(26829948)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Fine]: 2008.09.03 13:56:03.145--ServerSession(26829948)--Connection(23390238)--Thread(Thread[main,5,main])--SELECT * FROM SEQUENCE WHERE SEQ_NAME
= SEQ_GEN
[EL Fine]: 2008.09.03 13:56:03.145--ServerSession(26829948)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:03.145--ServerSession(26829948)--Thread(Thread[main,5,main])--Exception [EclipseLink-4002] (Eclipse Persistence Service
s - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: Table/View 'SEQUENCE' does not exist.
Error Code: -1
Call: SELECT * FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN'
Query: DataReadQuery()
[EL Finest]: 2008.09.03 13:56:05.989--ServerSession(26829948)--Thread(Thread[main,5,main])--End deploying Persistence Unit DigitalArtJPA; state Deploy
ed; factoryCount 1
[EL Finer]: 2008.09.03 13:56:06.286--ServerSession(26829948)--Thread(Thread[main,5,main])--client acquired
[EL Finer]: 2008.09.03 13:56:06.301--ClientSession(27105466)--Connection(26614986)--Thread(Thread[main,5,main])--begin transaction
[EL Finest]: 2008.09.03 13:56:06.301--ClientSession(27105466)--Thread(Thread[main,5,main])--reconnecting to external connection pool
[EL Finest]: 2008.09.03 13:56:06.864--UnitOfWork(30100661)--Thread(Thread[main,5,main])--Execute query ReadAllQuery(da.db.model.ArtCategory)
[EL Fine]: 2008.09.03 13:56:06.880--ClientSession(27105466)--Connection(9474419)--Thread(Thread[main,5,main])--SELECT ID, NAME FROM ARTCATEGORY WHERE
(NAME = CAST (? AS VARCHAR(32672) ))
        bind => [Art Movements]
[EL Fine]: 2008.09.03 13:56:06.895--ClientSession(27105466)--Thread(Thread[main,5,main])--VALUES(1)
[EL Warning]: 2008.09.03 13:56:06.895--UnitOfWork(30100661)--Thread(Thread[main,5,main])--Local Exception Stack:
Exception [EclipseLink-4002] (Eclipse Persistence Services - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: Table/View 'ARTCATEGORY' does not exist.
Error Code: -1
Call: SELECT ID, NAME FROM ARTCATEGORY WHERE (NAME = CAST (? AS VARCHAR(32672) ))
        bind => [Art Movements]
Query: ReadAllQuery(da.db.model.ArtCategory)
        at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:322)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:646)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:500)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeCall(AbstractSession.java:855)
        at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:205)
        at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:191)
        at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMechanism.java:262)
        at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechanism.java:599)
        at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMechanism.java:2506)
        at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java:2464)
        at org.eclipse.persistence.queries.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:478)
        at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:879)
        at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:666)
        at org.eclipse.persistence.queries.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:840)
        at org.eclipse.persistence.queries.ReadAllQuery.execute(ReadAllQuery.java:456)
        at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:902)
        at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2607)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1178)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1162)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1136)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1118)
        at org.eclipse.persistence.internal.jpa.EJBQueryImpl.executeReadQuery(EJBQueryImpl.java:399)
        at org.eclipse.persistence.internal.jpa.EJBQueryImpl.getResultList(EJBQueryImpl.java:517)
        at da.db.dao.jpa.ArtDaoJpaImpl.findArtCategoryByName(ArtDaoJpaImpl.java:55)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
        at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
        at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
        at $Proxy46.findArtCategoryByName(Unknown Source)
        at da.service.impl.ArtManagementImpl.findArtCategoryByName(ArtManagementImpl.java:65)
        at da.service.impl.ArtManagementImpl.addArtCategoryIfNotExist(ArtManagementImpl.java:45)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
        at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
        at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
        at $Proxy68.addArtCategoryIfNotExist(Unknown Source)
        at da.web.service.ArtCategoriesInitialization.createCategory(ArtCategoriesInitialization.java:70)
        at da.web.service.ArtCategoriesInitialization.createCategories(ArtCategoriesInitialization.java:54)
        at da.web.service.ArtCategoriesInitialization.initialize(ArtCategoriesInitialization.java:42)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java
:1413)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1374
)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
        at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
        at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
        at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
        at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
        at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
        at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
        at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3830)
        at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
        at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:791)
        at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771)
        at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525)
        at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:626)
        at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:553)
        at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:488)
        at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
        at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
        at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
        at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053)
        at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
        at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
        at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
        at org.apache.catalina.core.StandardService.start(StandardService.java:516)
        at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
        at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
        at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
Caused by: java.sql.SQLSyntaxErrorException: Table/View 'ARTCATEGORY' does not exist.
        at org.apache.derby.client.am.SQLExceptionFactory40.getSQLException(Unknown Source)
        at org.apache.derby.client.am.SqlException.getSQLException(Unknown Source)
        at org.apache.derby.client.am.Connection.prepareStatement(Unknown Source)
        at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:248)
        at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:302)
        at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:248)
        at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:302)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.prepareStatement(DatabaseAccessor.java:1340)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.prepareStatement(DatabaseAccessor.java:1293)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseCall.prepareStatement(DatabaseCall.java:645)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:550)
        ... 95 more
Caused by: org.apache.derby.client.am.SqlException: Table/View 'ARTCATEGORY' does not exist.
        at org.apache.derby.client.am.Statement.completeSqlca(Unknown Source)
        at org.apache.derby.client.net.NetStatementReply.parsePrepareError(Unknown Source)
        at org.apache.derby.client.net.NetStatementReply.parsePRPSQLSTTreply(Unknown Source)
        at org.apache.derby.client.net.NetStatementReply.readPrepareDescribeOutput(Unknown Source)
        at org.apache.derby.client.net.StatementReply.readPrepareDescribeOutput(Unknown Source)
        at org.apache.derby.client.net.NetStatement.readPrepareDescribeOutput_(Unknown Source)
        at org.apache.derby.client.am.Statement.readPrepareDescribeOutput(Unknown Source)
        at org.apache.derby.client.am.PreparedStatement.readPrepareDescribeInputOutput(Unknown Source)
        at org.apache.derby.client.am.PreparedStatement.flowPrepareDescribeInputOutput(Unknown Source)
        at org.apache.derby.client.am.PreparedStatement.prepare(Unknown Source)
        at org.apache.derby.client.am.Connection.prepareStatementX(Unknown Source)
        ... 104 more

[EL Finer]: 2008.09.03 13:56:06.911--UnitOfWork(30100661)--Thread(Thread[main,5,main])--release unit of work
[EL Finer]: 2008.09.03 13:56:06.911--ClientSession(27105466)--Connection(9474419)--Thread(Thread[main,5,main])--rollback transaction
[EL Finer]: 2008.09.03 13:56:06.911--ClientSession(27105466)--Thread(Thread[main,5,main])--client released
90140 [main] INFO org.springframework.beans.factory.support.DefaultListableBeanFactory - Destroying singletons in org.springframework.beans.factory.su
pport.DefaultListableBeanFactory@366573: defining beans [hostnamefactory,propertypath,environmentManagement,derbyurlgenerator,pool,derbyurl,derbydrive
r,bds,dsConnectionFactory,poolableConnectionFactory,daDataSource,eclipseLinkJPAProperties,jpaAdapter,jpaDialect,entityManagerFactory,org.springframewo
rk.aop.config.internalAutoProxyCreator,org.springframework.context.config.internalBeanConfigurerAspect,org.springframework.context.weaving.AspectJWeav
ingEnabler#0,loadTimeWeaver,org.springframework.context.weaving.AspectJWeavingEnabler#1,org.springframework.orm.jpa.support.PersistenceAnnotationBeanP
ostProcessor#0,transactionManager,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.in
terceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,userDao,groupDao,sellerDao,buyerDao,galleryDao,im
ageDao,digitalitemDao,forumDao,postDao,ratingDao,ratingcontainerDao,auditDao,commissionDao,cartDao,artDao,remembermeDao,featureFSDao,jpaTemplate,audit
logqueryDao,imagequeryDao,commissionqueryDao,digitalitemqueryDao,userqueryDao,groupqueryDao,sellerqueryDao,galleryqueryDao,cartqueryDao,galleryQueryMa
nagement,commissionQueryManagement,auditQueryManagement,cartQueryManagement,imagequeryManagement,userqueryManagement,groupqueryManagement,sellerqueryM
anagement,org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#1,mailSender,cartManagement,userManagement,sellerManagement,buyer
Management,galleryManagement,digitalitemManagement,imageManagement,commissionManagement,forumManagement,ratingManagement,sessionManagement,featureMana
gement,auditManagement,localeManagement,userEmailManagement,artManagement,imageConversionManagement,wicketApplication,artinit,usergroupsinit,rememberM
eService]; root of factory hierarchy
90140 [main] INFO org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean - Closing JPA EntityManagerFactory for persistence unit 'DigitalA
rtJPA'
[EL Finest]: 2008.09.03 13:56:06.911--ServerSession(26829948)--Thread(Thread[main,5,main])--Begin undeploying Persistence Unit DigitalArtJPA; state De
ployed; factoryCount 1
[EL Finest]: 2008.09.03 13:56:06.911--ServerSession(26829948)--Thread(Thread[main,5,main])--sequencing disconnected
[EL Config]: 2008.09.03 13:56:06.911--ServerSession(26829948)--Connection(1132345)--Thread(Thread[main,5,main])--disconnect
[EL Finer]: 2008.09.03 13:56:06.911--ServerSession(26829948)--Thread(Thread[main,5,main])--initialize identitymaps
[EL Info]: 2008.09.03 13:56:06.911--ServerSession(26829948)--Thread(Thread[main,5,main])--file:/C:/development/apache-tomcat-6.0.14/webapps/DigitalArt
Web/WEB-INF/lib/da-db-0.0.1-SNAPSHOT.jar-DigitalArtJPA logout successful
[EL Finest]: 2008.09.03 13:56:06.911--ServerSession(26829948)--Thread(Thread[main,5,main])--End undeploying Persistence Unit DigitalArtJPA; state Unde
ployed; factoryCount 0
90140 [main] ERROR org.springframework.web.context.ContextLoader - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'artinit' defined in ServletContext resource [/WEB-INF/digitala
rt-services-config.xml]: Invocation of init method failed; nested exception is Exception [EclipseLink-4002] (Eclipse Persistence Services - 1.1 (Build
 SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLSyntaxErrorException: Table/View 'ARTCATEGORY' does not exist.
Error Code: -1
Call: SELECT ID, NAME FROM ARTCATEGORY WHERE (NAME = CAST (? AS VARCHAR(32672) ))
        bind => [Art Movements]
Query: ReadAllQuery(da.db.model.ArtCategory)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1337)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
        at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
        at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)
        at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)
        at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
        at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
        at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
        at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3830)
        at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
        at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:791)
        at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771)
        at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525)
        at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:626)
        at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:553)
        at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:488)
        at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
        at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
        at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
        at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053)
        at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
        at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
        at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
        at org.apache.catalina.core.StandardService.start(StandardService.java:516)
        at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
        at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
        at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 1.1 (Build SNAPSHOT-20080901)): org.eclipse.persistence.exceptions.DatabaseExc
eption
Internal Exception: java.sql.SQLSyntaxErrorException: Table/View 'ARTCATEGORY' does not exist.
Error Code: -1
Call: SELECT ID, NAME FROM ARTCATEGORY WHERE (NAME = CAST (? AS VARCHAR(32672) ))
        bind => [Art Movements]
Query: ReadAllQuery(da.db.model.ArtCategory)
        at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:322)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:646)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:500)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeCall(AbstractSession.java:855)
        at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:205)
        at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:191)
        at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMechanism.java:262)
        at org.eclipse.persistence.internal.queries.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechanism.java:599)
        at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRowsFromTable(ExpressionQueryMechanism.java:2506)
        at org.eclipse.persistence.internal.queries.ExpressionQueryMechanism.selectAllRows(ExpressionQueryMechanism.java:2464)
        at org.eclipse.persistence.queries.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:478)
        at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:879)
        at org.eclipse.persistence.queries.DatabaseQuery.execute(DatabaseQuery.java:666)
        at org.eclipse.persistence.queries.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:840)
        at org.eclipse.persistence.queries.ReadAllQuery.execute(ReadAllQuery.java:456)
        at org.eclipse.persistence.queries.ObjectLevelReadQuery.executeInUnitOfWork(ObjectLevelReadQuery.java:902)
        at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2607)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1178)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1162)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1136)
        at org.eclipse.persistence.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1118)
        at org.eclipse.persistence.internal.jpa.EJBQueryImpl.executeReadQuery(EJBQueryImpl.java:399)
        at org.eclipse.persistence.internal.jpa.EJBQueryImpl.getResultList(EJBQueryImpl.java:517)
        at da.db.dao.jpa.ArtDaoJpaImpl.findArtCategoryByName(ArtDaoJpaImpl.java:55)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
        at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
        at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
        at $Proxy46.findArtCategoryByName(Unknown Source)
        at da.service.impl.ArtManagementImpl.findArtCategoryByName(ArtManagementImpl.java:65)
        at da.service.impl.ArtManagementImpl.addArtCategoryIfNotExist(ArtManagementImpl.java:45)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
        at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
        at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
        at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
        at $Proxy68.addArtCategoryIfNotExist(Unknown Source)
        at da.web.service.ArtCategoriesInitialization.createCategory(ArtCategoriesInitialization.java:70)
        at da.web.service.ArtCategoriesInitialization.createCategories(ArtCategoriesInitialization.java:54)
        at da.web.service.ArtCategoriesInitialization.initialize(ArtCategoriesInitialization.java:42)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeCustomInitMethod(AbstractAutowireCapableBeanFactory.java
:1413)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1374
)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1334)
        ... 39 more
Caused by: java.sql.SQLSyntaxErrorException: Table/View 'ARTCATEGORY' does not exist.
        at org.apache.derby.client.am.SQLExceptionFactory40.getSQLException(Unknown Source)
        at org.apache.derby.client.am.SqlException.getSQLException(Unknown Source)
        at org.apache.derby.client.am.Connection.prepareStatement(Unknown Source)
        at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:248)
        at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:302)
        at org.apache.commons.dbcp.DelegatingConnection.prepareStatement(DelegatingConnection.java:248)
        at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:302)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.prepareStatement(DatabaseAccessor.java:1340)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.prepareStatement(DatabaseAccessor.java:1293)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseCall.prepareStatement(DatabaseCall.java:645)
        at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:550)
        ... 95 more
Caused by: org.apache.derby.client.am.SqlException: Table/View 'ARTCATEGORY' does not exist.
        at org.apache.derby.client.am.Statement.completeSqlca(Unknown Source)
        at org.apache.derby.client.net.NetStatementReply.parsePrepareError(Unknown Source)
        at org.apache.derby.client.net.NetStatementReply.parsePRPSQLSTTreply(Unknown Source)
        at org.apache.derby.client.net.NetStatementReply.readPrepareDescribeOutput(Unknown Source)
        at org.apache.derby.client.net.StatementReply.readPrepareDescribeOutput(Unknown Source)
        at org.apache.derby.client.net.NetStatement.readPrepareDescribeOutput_(Unknown Source)
        at org.apache.derby.client.am.Statement.readPrepareDescribeOutput(Unknown Source)
        at org.apache.derby.client.am.PreparedStatement.readPrepareDescribeInputOutput(Unknown Source)
        at org.apache.derby.client.am.PreparedStatement.flowPrepareDescribeInputOutput(Unknown Source)
        at org.apache.derby.client.am.PreparedStatement.prepare(Unknown Source)
        at org.apache.derby.client.am.Connection.prepareStatementX(Unknown Source)
        ... 104 more
Sep 3, 2008 1:56:06 PM org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
Sep 3, 2008 1:56:06 PM org.apache.catalina.core.StandardContext start
SEVERE: Context [/DigitalArtWeb] startup failed due to previous errors
Sep 3, 2008 1:56:10 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Sep 3, 2008 1:56:10 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Sep 3, 2008 1:56:10 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/47  config=null
Sep 3, 2008 1:56:10 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 106717 ms

Back to the top