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

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Getting NullPointerException when processing annotations
PostPosted: Tue Jan 02, 2007 2:21 pm 
Newbie

Joined: Tue Jan 02, 2007 1:15 pm
Posts: 3
Location: Toronto, Canada
Hi,

I've taken the Seam 'Booking' example and begun to modify it for my own use. I created some Entity beans, annotations to describe the properties and relations, and am now trying them out by simply seeing if JBOSS will start cleanly (like it does for the Booking example). I've worked through a few problems I have found but I am stuck on this one. When starting JBOSS, hibernate is processing my annotations and then throws a NullPointerException. I found another topic in the forum that seems to be similar:
(http://forum.hibernate.org/viewtopic.ph ... a8ded2579d)

In that topic it describes a workaround "Changing the order of the classes handed to AnnotationConfiguration works around the problem". I'm not explicitely creating or working with an AnnotationConfiguration so I'm not sure if this is an option for me.. Maybe Seam creates it for me? Sorry, I don't know enough of what the frameworks are doing for me.

The cause is likely some mistake I have made in the annotations in one of my classes though the output doesn't give me much to go by. Can someone please point me in a direction? I don't know where start to try and figure out where this NPE is coming from.


Stack:
Windows XP
IBM JSDK 1.50
JBOSS 4.0.5 GA
HSQLDB version=1.8.0
Seam 1.1.0.GA
Hibernate 3.2.0.ga
Hibernate EntityManager 3.2.0.CR2
Hibernate Annotations 3.2.0.CR2

Mapping documents:
I'm using JPA annotations, so I have no mapping document

The datasource description:
Code:
<?xml version="1.0" encoding="UTF-8"?>

<datasources>
    <local-tx-datasource>
        <jndi-name>fixmgmtDatasource</jndi-name>
        <connection-url>jdbc:hsqldb:.</connection-url>
        <driver-class>org.hsqldb.jdbcDriver</driver-class>
        <user-name>sa</user-name>
        <password></password>
    </local-tx-datasource>
</datasources>



persistence.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
             version="1.0">
   <persistence-unit name="fixmgmtDatabase">
      <provider>org.hibernate.ejb.HibernatePersistence</provider>
      <jta-data-source>java:/fixmgmtDatasource</jta-data-source>
      <properties>
         <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
         <property name="hibernate.show_sql" value="true"/>
         <!-- These are the default for JBoss EJB3, but not for HEM: -->
         <property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider"/>
         <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup"/>
      </properties>
   </persistence-unit>
</persistence>


Full stack trace:
Code:
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property aparOriginatedByThisRequest
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading aparOriginatedByThisRequest with none
2007-01-01 19:26:24,391 DEBUG [org.jboss.ejb3.ServiceDelegateWrapper] Starting failed persistence.units:ear=fixmgmt.ear,unitName=fixmgmtDatabase
java.lang.NullPointerException
   at org.hibernate.cfg.OneToOneSecondPass.doSecondPass(OneToOneSecondPass.java:135)
   at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1054)
   at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:296)
   at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1039)
   at org.hibernate.ejb.Ejb3Configuration.buildMappings(Ejb3Configuration.java:1207)
   at org.hibernate.ejb.EventListenerConfigurator.configure(EventListenerConfigurator.java:154)
   at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:844)
   at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:382)
   at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:126)
   at org.jboss.ejb3.entity.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:264)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.ejb3.ServiceDelegateWrapper.startService(ServiceDelegateWrapper.java:102)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
   at $Proxy0.start(Unknown Source)
   at org.jboss.system.ServiceController.start(ServiceController.java:417)
   at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy55.start(Unknown Source)
   at org.jboss.ejb3.JmxKernelAbstraction.install(JmxKernelAbstraction.java:96)
   at org.jboss.ejb3.Ejb3Deployment.startPersistenceUnits(Ejb3Deployment.java:467)
   at org.jboss.ejb3.Ejb3Deployment.start(Ejb3Deployment.java:317)
   at org.jboss.ejb3.Ejb3Module.startService(Ejb3Module.java:91)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
   at $Proxy0.start(Unknown Source)
   at org.jboss.system.ServiceController.start(ServiceController.java:417)
   at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy37.start(Unknown Source)
   at org.jboss.ejb3.EJB3Deployer.start(EJB3Deployer.java:449)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
   at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
   at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
   at org.jboss.ws.integration.jboss.DeployerInterceptor.start(DeployerInterceptor.java:92)
   at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
   at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy38.start(Unknown Source)
   at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
   at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
   at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy6.deploy(Unknown Source)
   at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
   at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
   at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
   at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
   at $Proxy0.start(Unknown Source)
   at org.jboss.system.ServiceController.start(ServiceController.java:417)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy4.start(Unknown Source)
   at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
   at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy5.deploy(Unknown Source)
   at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
   at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
   at org.jboss.Main.boot(Main.java:200)
   at org.jboss.Main$1.run(Main.java:490)
   at java.lang.Thread.run(Thread.java:797)
2007-01-01 19:26:24,411 WARN  [org.jboss.system.ServiceController] Problem starting service persistence.units:ear=fixmgmt.ear,unitName=fixmgmtDatabase
java.lang.NullPointerException
   at org.hibernate.cfg.OneToOneSecondPass.doSecondPass(OneToOneSecondPass.java:135)
   at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1054)
   at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:296)
   at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1039)
   at org.hibernate.ejb.Ejb3Configuration.buildMappings(Ejb3Configuration.java:1207)
   at org.hibernate.ejb.EventListenerConfigurator.configure(EventListenerConfigurator.java:154)
   at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:844)
   at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:382)
   at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:126)
   at org.jboss.ejb3.entity.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:264)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.ejb3.ServiceDelegateWrapper.startService(ServiceDelegateWrapper.java:102)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
   at $Proxy0.start(Unknown Source)
   at org.jboss.system.ServiceController.start(ServiceController.java:417)
   at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy55.start(Unknown Source)
   at org.jboss.ejb3.JmxKernelAbstraction.install(JmxKernelAbstraction.java:96)
   at org.jboss.ejb3.Ejb3Deployment.startPersistenceUnits(Ejb3Deployment.java:467)
   at org.jboss.ejb3.Ejb3Deployment.start(Ejb3Deployment.java:317)
   at org.jboss.ejb3.Ejb3Module.startService(Ejb3Module.java:91)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
   at $Proxy0.start(Unknown Source)
   at org.jboss.system.ServiceController.start(ServiceController.java:417)
   at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy37.start(Unknown Source)
   at org.jboss.ejb3.EJB3Deployer.start(EJB3Deployer.java:449)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
   at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
   at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
   at org.jboss.ws.integration.jboss.DeployerInterceptor.start(DeployerInterceptor.java:92)
   at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
   at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy38.start(Unknown Source)
   at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
   at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
   at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy6.deploy(Unknown Source)
   at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
   at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
   at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
   at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
   at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
   at $Proxy0.start(Unknown Source)
   at org.jboss.system.ServiceController.start(ServiceController.java:417)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy4.start(Unknown Source)
   at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
   at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
   at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   at java.lang.reflect.Method.invoke(Method.java:615)
   at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
   at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
   at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
   at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
   at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
   at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
   at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
   at $Proxy5.deploy(Unknown Source)
   at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
   at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
   at org.jboss.Main.boot(Main.java:200)
   at org.jboss.Main$1.run(Main.java:490)
   at java.lang.Thread.run(Thread.java:797)
2007-01-01 19:26:24,421 DEBUG [org.jboss.ejb3.security.JaccHelper] JACC Policy Configuration for deployment has been put in service



JBOSS log with debug showing everything up to the exception:
Code:
2007-01-01 19:26:23,840 DEBUG [org.jboss.ejb3.entity.PersistenceUnitDeployment] Found persistence.xml file in EJB3 jar
2007-01-01 19:26:23,840 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@5e125e12{ url=null ,addedOrder=0}
2007-01-01 19:26:23,840 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@e400e40{ url=null ,addedOrder=0}
2007-01-01 19:26:23,840 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@3de43de4{ url=null ,addedOrder=0}
2007-01-01 19:26:23,860 INFO  [org.hibernate.ejb.Version] Hibernate EntityManager 3.2.0.CR2
2007-01-01 19:26:23,880 INFO  [org.hibernate.cfg.annotations.Version] Hibernate Annotations 3.2.0.CR2
2007-01-01 19:26:23,880 INFO  [org.hibernate.cfg.Environment] Hibernate 3.2.0.ga
2007-01-01 19:26:23,890 INFO  [org.hibernate.cfg.Environment] hibernate.properties not found
2007-01-01 19:26:23,890 INFO  [org.hibernate.cfg.Environment] Bytecode provider name : javassist
2007-01-01 19:26:23,900 INFO  [org.hibernate.cfg.Environment] using JDK 1.4 java.sql.Timestamp handling
2007-01-01 19:26:23,990 DEBUG [org.hibernate.ejb.Ejb3Configuration] Processing PersistenceUnitInfo [
   name: fixmgmtDatabase
   persistence provider classname: org.hibernate.ejb.HibernatePersistence
   classloader: org.jboss.mx.loading.UnifiedClassLoader3@11461146{ url=file:/D:/jboss-4.0.5.GA/server/default/tmp/deploy/tmp10295fixmgmt.ear ,addedOrder=43}
   Temporary classloader: null
   excludeUnlistedClasses: false
   JTA datasource: org.jboss.resource.adapter.jdbc.WrapperDataSource@53ca53ca
   Non JTA datasource: null
   Transaction type: JTA
   PU root URL: file:/D:/jboss-4.0.5.GA/server/default/tmp/deploy/tmp10295fixmgmt.ear-contents/fixmgmt.jar
   Jar files URLs []
   Managed classes names []
   Mapping files names []
   Properties [
      hibernate.jndi.java.naming.factory.url.pkgs: org.jboss.naming:org.jnp.interfaces
      hibernate.cache.provider_class: org.hibernate.cache.HashtableCacheProvider
      hibernate.jndi.java.naming.factory.initial: org.jnp.interfaces.NamingContextFactory
      hibernate.transaction.manager_lookup_class: org.hibernate.transaction.JBossTransactionManagerLookup
      hibernate.jacc.ctx.id: fixmgmt.jar
      hibernate.hbm2ddl.auto: create-drop
      hibernate.bytecode.use_reflection_optimizer: false
      hibernate.show_sql: true
      hibernate.bytecode.provider: javassist]
2007-01-01 19:26:23,990 DEBUG [org.hibernate.ejb.Ejb3Configuration] Detect class: true; detect hbm: true
2007-01-01 19:26:23,990 DEBUG [org.hibernate.ejb.Ejb3Configuration] Detect class: true; detect hbm: true
2007-01-01 19:26:23,990 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Track
2007-01-01 19:26:23,990 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Package
2007-01-01 19:26:23,990 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Customer
2007-01-01 19:26:23,990 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.APAR
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Delivery
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.RequestContact
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Request
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Product
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Edition
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Defect
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 @Embeddable: com.my.company.fixmgmt.model.RequestContactPK
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.State
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.BaseLevel
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.CMVCRelease
2007-01-01 19:26:24,000 INFO  [org.hibernate.ejb.Ejb3Configuration] found EJB3 Entity bean: com.my.company.fixmgmt.model.Platform
2007-01-01 19:26:24,000 WARN  [org.hibernate.ejb.Ejb3Configuration] Persistence provider caller does not implements the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.
2007-01-01 19:26:24,060 INFO  [org.hibernate.cfg.Configuration] Reading mappings from resource: META-INF/orm.xml
2007-01-01 19:26:24,060 INFO  [org.hibernate.ejb.Ejb3Configuration] [PersistenceUnit: fixmgmtDatabase] no META-INF/orm.xml found
2007-01-01 19:26:24,060 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Execute first pass mapping processing
2007-01-01 19:26:24,060 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1fb01fb0{ url=null ,addedOrder=0}
2007-01-01 19:26:24,060 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@76267626{ url=null ,addedOrder=0}
2007-01-01 19:26:24,070 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@69746974{ url=null ,addedOrder=0}
2007-01-01 19:26:24,120 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Process hbm files
2007-01-01 19:26:24,120 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Process annotated classes
2007-01-01 19:26:24,120 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.my.company.fixmgmt.model.Track
2007-01-01 19:26:24,131 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@71c671c6{ url=null ,addedOrder=0}
2007-01-01 19:26:24,141 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,161 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Track
2007-01-01 19:26:24,161 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.my.company.fixmgmt.model.Track on table tracks
2007-01-01 19:26:24,171 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.my.company.fixmgmt.model.Track property annotation
2007-01-01 19:26:24,171 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@11ea11ea{ url=null ,addedOrder=0}
2007-01-01 19:26:24,171 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@490a490a{ url=null ,addedOrder=0}
2007-01-01 19:26:24,191 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@4b204b2{ url=null ,addedOrder=0}
2007-01-01 19:26:24,191 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@3de63de6{ url=null ,addedOrder=0}
2007-01-01 19:26:24,191 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@21da21da{ url=null ,addedOrder=0}
2007-01-01 19:26:24,191 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Track.id
2007-01-01 19:26:24,201 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,201 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,201 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@2dc02dc0{ url=null ,addedOrder=0}
2007-01-01 19:26:24,201 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,201 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Track.ofDefect
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column ofDefect unique false
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property ofDefect with lazy=false
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for ofDefect
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property ofDefect
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading ofDefect with null
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Track.ofRelease
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column ofRelease unique false
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property ofRelease with lazy=false
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for ofRelease
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property ofRelease
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading ofRelease with null
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Track.requests
2007-01-01 19:26:24,211 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,221 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,221 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,231 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,231 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@78547854{ url=null ,addedOrder=0}
2007-01-01 19:26:24,231 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,231 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,231 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.my.company.fixmgmt.model.Track.requests
2007-01-01 19:26:24,231 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@5aca5aca{ url=null ,addedOrder=0}
2007-01-01 19:26:24,231 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property requests
2007-01-01 19:26:24,231 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading requests with none
2007-01-01 19:26:24,231 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.my.company.fixmgmt.model.Package
2007-01-01 19:26:24,231 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,231 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Package
2007-01-01 19:26:24,231 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.my.company.fixmgmt.model.Package on table packages
2007-01-01 19:26:24,241 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.my.company.fixmgmt.model.Package property annotation
2007-01-01 19:26:24,241 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@695c695c{ url=null ,addedOrder=0}
2007-01-01 19:26:24,241 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@173e173e{ url=null ,addedOrder=0}
2007-01-01 19:26:24,241 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1c7e1c7e{ url=null ,addedOrder=0}
2007-01-01 19:26:24,241 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@19e419e4{ url=null ,addedOrder=0}
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Package.id
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Package.filename
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column filename unique false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property filename with lazy=false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for filename
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property filename
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading filename with null
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Package.originatingRequest
2007-01-01 19:26:24,251 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1a201a2{ url=null ,addedOrder=0}
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column originatingRequest unique false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property originatingRequest
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading originatingRequest with none
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Package.uploadDate
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column uploadDate unique false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property uploadDate with lazy=false
2007-01-01 19:26:24,251 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@334c334c{ url=null ,addedOrder=0}
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for uploadDate
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property uploadDate
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading uploadDate with null
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Package.URL
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column URL unique false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property URL with lazy=false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for URL
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property URL
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading URL with null
2007-01-01 19:26:24,251 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.my.company.fixmgmt.model.Customer
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Customer
2007-01-01 19:26:24,251 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.my.company.fixmgmt.model.Customer on table customers
2007-01-01 19:26:24,251 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.my.company.fixmgmt.model.Customer property annotation
2007-01-01 19:26:24,261 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@61d861d8{ url=null ,addedOrder=0}
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Customer.customerNumber
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column customerNumber unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.AnnotationBinder] customerNumber is an id
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for customerNumber
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property customerNumber
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading customerNumber with null
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on customerNumber
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Customer.customerName
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column customerName unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property customerName with lazy=false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for customerName
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property customerName
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading customerName with null
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Customer.deliveriesMadeToThisCustomer
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column deliveriesMadeToThisCustomer unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.my.company.fixmgmt.model.Customer.deliveriesMadeToThisCustomer
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property deliveriesMadeToThisCustomer
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading deliveriesMadeToThisCustomer with none
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.Customer.requestsMadeForThisCustomer
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column requestsMadeForThisCustomer unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.my.company.fixmgmt.model.Customer.requestsMadeForThisCustomer
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property requestsMadeForThisCustomer
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading requestsMadeForThisCustomer with none
2007-01-01 19:26:24,261 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.my.company.fixmgmt.model.APAR
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=APAR
2007-01-01 19:26:24,261 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.my.company.fixmgmt.model.APAR on table apars
2007-01-01 19:26:24,261 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.my.company.fixmgmt.model.APAR property annotation
2007-01-01 19:26:24,261 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@314c314c{ url=null ,addedOrder=0}
2007-01-01 19:26:24,271 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@1e8e1e8e, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@2cce2cce{ url=null ,addedOrder=0}
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.APAR.aparNumber
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column aparNumber unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] aparNumber is an id
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for aparNumber
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property aparNumber
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading aparNumber with null
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on aparNumber
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.APAR.allDefectsIncludedInThisAPAR
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.my.company.fixmgmt.model.APAR.allDefectsIncludedInThisAPAR
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property allDefectsIncludedInThisAPAR
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading allDefectsIncludedInThisAPAR with none
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.APAR.allRequestsForThisAPAR
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column allRequestsForThisAPAR unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.my.company.fixmgmt.model.APAR.allRequestsForThisAPAR
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property allRequestsForThisAPAR
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading allRequestsForThisAPAR with none
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.APAR.longDescription
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column longDescription unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property longDescription with lazy=false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for longDescription
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property longDescription
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading longDescription with null
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.APAR.originatingRequest
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column ORIGINATING_REQUEST unique true
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column originatingRequest unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Fetching originatingRequest with JOIN
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property originatingRequest
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading originatingRequest with none
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.my.company.fixmgmt.model.APAR.problemAbstract
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column problemAbstract unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property problemAbstract with lazy=false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for problemAbstract
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property problemAbstract


Last edited by dmacbride on Tue Jan 02, 2007 3:42 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject: This was truncated from the original post
PostPosted: Tue Jan 02, 2007 2:28 pm 
Newbie

Joined: Tue Jan 02, 2007 1:15 pm
Posts: 3
Location: Toronto, Canada
In case the log output I copied at the end of the original post is useful, the following was cut off:

Code:
...
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property problemAbstract
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading problemAbstract with null
2007-01-01 19:26:24,271 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.Delivery
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Delivery
2007-01-01 19:26:24,271 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.Delivery on table deliveries
2007-01-01 19:26:24,271 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.Delivery property annotation
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Delivery.id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Delivery.customerDeliveredTo
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column customerDeliveredTo unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property customerDeliveredTo
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading customerDeliveredTo with none
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Delivery.deliveredBy
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column deliveredBy unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property deliveredBy with lazy=false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for deliveredBy
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property deliveredBy
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading deliveredBy with null
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Delivery.deliveredRequest
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column deliveredRequest unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property deliveredRequest
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading deliveredRequest with none
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Delivery.deliveryDate
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column deliveryDate unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property deliveryDate with lazy=false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for deliveryDate
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property deliveryDate
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading deliveryDate with null
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Delivery.PMR
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column PMR unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property PMR with lazy=false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for PMR
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property PMR
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading PMR with null
2007-01-01 19:26:24,281 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.RequestContact
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=RequestContact
2007-01-01 19:26:24,281 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.RequestContact on table requestcontacts
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.RequestContact property annotation
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.RequestContact.id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.RequestContact.contactEmailAddress
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column contactEmailAddress unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property contactEmailAddress with lazy=false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for contactEmailAddress
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property contactEmailAddress
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading contactEmailAddress with null
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.RequestContact.forRequest
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column forRequest unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property forRequest
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading forRequest with none
2007-01-01 19:26:24,281 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.Request
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Request
2007-01-01 19:26:24,281 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.Request on table requests
2007-01-01 19:26:24,281 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.Request property annotation
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.id
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.packagesBuiltForThisRequest
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column packagesBuiltForThisRequest unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.Request.packagesBuiltForThisRequest
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property packagesBuiltForThisRequest
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading packagesBuiltForThisRequest with none
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.requestContacts
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column requestContacts unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.Request.requestContacts
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property requestContacts
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading requestContacts with none
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.deliveriesMade
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column deliveriesMade unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.Request.deliveriesMade
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property deliveriesMade
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading deliveriesMade with none
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.auditTrail
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column auditTrail unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property auditTrail with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for auditTrail
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property auditTrail
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading auditTrail with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.codeExtractedDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column codeExtractedDate unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property codeExtractedDate with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for codeExtractedDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property codeExtractedDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading codeExtractedDate with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.completionDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column completionDate unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property completionDate with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for completionDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property completionDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading completionDate with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.currentState
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column currentState unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property currentState
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading currentState with none
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.fixRequiredDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column fixRequiredDate unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property fixRequiredDate with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for fixRequiredDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property fixRequiredDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading fixRequiredDate with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.forApar
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column forApar unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property forApar
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading forApar with none
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.forBaseLevel
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column forBaseLevel unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property forBaseLevel with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for forBaseLevel
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property forBaseLevel
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading forBaseLevel with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.forCustomer
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column forCustomer unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property forCustomer
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading forCustomer with none
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.forProduct
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column forProduct unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property forProduct
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading forProduct with none
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.originalTargetDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column originalTargetDate unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property originalTargetDate with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for originalTargetDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property originalTargetDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading originalTargetDate with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.PMR
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column PMR unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property PMR with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for PMR
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property PMR
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading PMR with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.requestersEmail
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column requestersEmail unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property requestersEmail with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for requestersEmail
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property requestersEmail
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading requestersEmail with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.subissionDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column subissionDate unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property subissionDate with lazy=false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for subissionDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property subissionDate
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading subissionDate with null
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.tracks
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.Request.tracks
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property tracks
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading tracks with none
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Request.aparOriginatedByThisRequest
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column aparOriginatedByThisRequest unique false
2007-01-01 19:26:24,291 DEBUG [org.hibernate.cfg.AnnotationBinder] Fetching aparOriginatedByThisRequest with JOIN
2007-01-01 19:26:24,301 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.Product
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Product
2007-01-01 19:26:24,301 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.Product on table products
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.Product property annotation
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Product.id
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Product.baseLevelsAvailableForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column baseLevelsAvailableForThisProduct unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property baseLevelsAvailableForThisProduct with lazy=false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for baseLevelsAvailableForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property baseLevelsAvailableForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading baseLevelsAvailableForThisProduct with null
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Product.platformsSupportedForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.Product.platformsSupportedForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property platformsSupportedForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading platformsSupportedForThisProduct with none
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Product.requestsOfFixestoThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column requestsOfFixestoThisProduct unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.Product.requestsOfFixestoThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property requestsOfFixestoThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading requestsOfFixestoThisProduct with none
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Product.productName
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column productName unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property productName with lazy=false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for productName
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property productName
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading productName with null
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Product.cmvcReleasesUsedForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column cmvcReleasesUsedForThisProduct unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property cmvcReleasesUsedForThisProduct with lazy=false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for cmvcReleasesUsedForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property cmvcReleasesUsedForThisProduct
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading cmvcReleasesUsedForThisProduct with null
2007-01-01 19:26:24,301 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.Edition
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Edition
2007-01-01 19:26:24,301 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.Edition on table editions
2007-01-01 19:26:24,301 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.Edition property annotation
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Edition.id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Edition.name
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column name unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property name with lazy=false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for name
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property name
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading name with null
2007-01-01 19:26:24,311 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.Defect
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Defect
2007-01-01 19:26:24,311 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.Defect on table defects
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.Defect property annotation
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Defect.defectName
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column defectName unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] defectName is an id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for defectName
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property defectName
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading defectName with null
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on defectName
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Defect.bugFix
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column bugFix unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property bugFix with lazy=false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for bugFix
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property bugFix
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading bugFix with null
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Defect.customCode
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column customCode unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property customCode with lazy=false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for customCode
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property customCode
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading customCode with null
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Defect.aparsIncludingThisDefect
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.Defect.aparsIncludingThisDefect
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property aparsIncludingThisDefect
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading aparsIncludingThisDefect with none
2007-01-01 19:26:24,311 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.State
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=State
2007-01-01 19:26:24,311 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.State on table states
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.State property annotation
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.State.id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.State.requestsInThisState
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column requestsInThisState unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.State.requestsInThisState
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property requestsInThisState
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading requestsInThisState with none
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.State.description
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column description unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property description with lazy=false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for description
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property description
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading description with null
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.State.stateName
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column stateName unique false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property stateName with lazy=false
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for stateName
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property stateName
2007-01-01 19:26:24,311 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading stateName with null
2007-01-01 19:26:24,311 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.BaseLevel
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=BaseLevel
2007-01-01 19:26:24,321 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.BaseLevel on table baselevels
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.BaseLevel property annotation
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.BaseLevel.id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.BaseLevel.level
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column level unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property level with lazy=false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for level
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property level
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading level with null
2007-01-01 19:26:24,321 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.CMVCRelease
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=CMVCRelease
2007-01-01 19:26:24,321 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.CMVCRelease on table cmvcreleases
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.CMVCRelease property annotation
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.CMVCRelease.id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.CMVCRelease.releaseName
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column releaseName unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property releaseName with lazy=false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for releaseName
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property releaseName
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading releaseName with null
2007-01-01 19:26:24,321 INFO  [org.hibernate.cfg.AnnotationBinder] Binding entity from annotated class: com.ibm.commerce.fixmgmt.model.Platform
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column DTYPE unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.EntityBinder] Import with entity name=Platform
2007-01-01 19:26:24,321 INFO  [org.hibernate.cfg.annotations.EntityBinder] Bind entity com.ibm.commerce.fixmgmt.model.Platform on table platforms
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing com.ibm.commerce.fixmgmt.model.Platform property annotation
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Platform.id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column id unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] id is an id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading id with null
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Bind @Id on id
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Platform.platformName
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column platformName unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] binding property platformName with lazy=false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.SimpleValueBinder] building SimpleValue for platformName
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property platformName
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading platformName with null
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationBinder] Processing annotations of com.ibm.commerce.fixmgmt.model.Platform.productsSupportedOnThisPlatform
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column element unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column mapkey unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.Ejb3Column] Binding column null unique false
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Collection role: com.ibm.commerce.fixmgmt.model.Platform.productsSupportedOnThisPlatform
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property productsSupportedOnThisPlatform
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading productsSupportedOnThisPlatform with none
2007-01-01 19:26:24,321 DEBUG [org.hibernate.cfg.AnnotationConfiguration] processing manytoone fk mappings
2007-01-01 19:26:24,381 DEBUG [org.hibernate.cfg.Configuration] processing extends queue
2007-01-01 19:26:24,381 DEBUG [org.hibernate.cfg.Configuration] processing collection mappings
2007-01-01 19:26:24,381 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.Product.platformsSupportedForThisProduct
2007-01-01 19:26:24,381 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding as ManyToMany: com.ibm.commerce.fixmgmt.model.Product.platformsSupportedForThisProduct
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: productsSupportedOnThisPlatform_id, element: platformsSupportedForThisProduct_id
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.Request.tracks
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding as ManyToMany: com.ibm.commerce.fixmgmt.model.Request.tracks
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: requests_id, element: tracks_id
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.APAR.allDefectsIncludedInThisAPAR
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding as ManyToMany: com.ibm.commerce.fixmgmt.model.APAR.allDefectsIncludedInThisAPAR
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: aparsIncludingThisDefect_aparNumber, element: allDefectsIncludedInThisAPAR_defectName
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.Track.requests
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding as ManyToMany: com.ibm.commerce.fixmgmt.model.Track.requests
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.TableBinder] Retrieving property com.ibm.commerce.fixmgmt.model.Request.tracks
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: tracks_id, element: requests_id
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.Customer.deliveriesMadeToThisCustomer
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding a OneToMany: com.ibm.commerce.fixmgmt.model.Customer.deliveriesMadeToThisCustomer through a foreign key
2007-01-01 19:26:24,391 INFO  [org.hibernate.cfg.annotations.CollectionBinder] Mapping collection: com.ibm.commerce.fixmgmt.model.Customer.deliveriesMadeToThisCustomer -> deliveries
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.TableBinder] Retrieving property com.ibm.commerce.fixmgmt.model.Delivery.customerDeliveredTo
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: customerDeliveredTo_customerNumber, one-to-many: com.ibm.commerce.fixmgmt.model.Delivery
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.Customer.requestsMadeForThisCustomer
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding a OneToMany: com.ibm.commerce.fixmgmt.model.Customer.requestsMadeForThisCustomer through a foreign key
2007-01-01 19:26:24,391 INFO  [org.hibernate.cfg.annotations.CollectionBinder] Mapping collection: com.ibm.commerce.fixmgmt.model.Customer.requestsMadeForThisCustomer -> requests
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.TableBinder] Retrieving property com.ibm.commerce.fixmgmt.model.Request.forCustomer
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: forCustomer_customerNumber, one-to-many: com.ibm.commerce.fixmgmt.model.Request
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.APAR.allRequestsForThisAPAR
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding a OneToMany: com.ibm.commerce.fixmgmt.model.APAR.allRequestsForThisAPAR through a foreign key
2007-01-01 19:26:24,391 INFO  [org.hibernate.cfg.annotations.CollectionBinder] Mapping collection: com.ibm.commerce.fixmgmt.model.APAR.allRequestsForThisAPAR -> requests
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.TableBinder] Retrieving property com.ibm.commerce.fixmgmt.model.Request.forApar
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: forApar_aparNumber, one-to-many: com.ibm.commerce.fixmgmt.model.Request
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.Request.packagesBuiltForThisRequest
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding a OneToMany: com.ibm.commerce.fixmgmt.model.Request.packagesBuiltForThisRequest through a foreign key
2007-01-01 19:26:24,391 INFO  [org.hibernate.cfg.annotations.CollectionBinder] Mapping collection: com.ibm.commerce.fixmgmt.model.Request.packagesBuiltForThisRequest -> packages
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.TableBinder] Retrieving property com.ibm.commerce.fixmgmt.model.Package.originatingRequest
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: originatingRequest_id, one-to-many: com.ibm.commerce.fixmgmt.model.Package
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.Request.requestContacts
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding a OneToMany: com.ibm.commerce.fixmgmt.model.Request.requestContacts through a foreign key
2007-01-01 19:26:24,391 INFO  [org.hibernate.cfg.annotations.CollectionBinder] Mapping collection: com.ibm.commerce.fixmgmt.model.Request.requestContacts -> requestcontacts
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.TableBinder] Retrieving property com.ibm.commerce.fixmgmt.model.RequestContact.forRequest
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: forRequest_id, one-to-many: com.ibm.commerce.fixmgmt.model.RequestContact
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Second pass for collection: com.ibm.commerce.fixmgmt.model.Request.deliveriesMade
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.CollectionBinder] Binding a OneToMany: com.ibm.commerce.fixmgmt.model.Request.deliveriesMade through a foreign key
2007-01-01 19:26:24,391 INFO  [org.hibernate.cfg.annotations.CollectionBinder] Mapping collection: com.ibm.commerce.fixmgmt.model.Request.deliveriesMade -> deliveries
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.TableBinder] Retrieving property com.ibm.commerce.fixmgmt.model.Delivery.deliveredRequest
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.CollectionSecondPass] Mapped collection key: deliveredRequest_id, one-to-many: com.ibm.commerce.fixmgmt.model.Delivery
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Building property aparOriginatedByThisRequest
2007-01-01 19:26:24,391 DEBUG [org.hibernate.cfg.annotations.PropertyBinder] Cascading aparOriginatedByThisRequest with none
2007-01-01 19:26:24,391 DEBUG [org.jboss.ejb3.ServiceDelegateWrapper] Starting failed persistence.units:ear=fixmgmt.ear,unitName=fixmgmtDatabase
java.lang.NullPointerException
   ...... (as provided above)


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

All times are UTC - 5 hours [ DST ]


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

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