Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-users] EclipseLink + Spring (EntityManagerFactory --> EntityManager)

I can't seem to get from an EntityManagerFactory to an EntityManager, without a class conversion problem; Please look for the yellow marked code in spring-context.xml ! I hope for some good tips/help to get further ! I'm stuck.


10:44:24,381 ERROR ContextLoader:215 - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'providerManager' defined in ServletContext resource [/WEB-INF/spring/spring-context.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager': no matching editors or conversion strategy found
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:480)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
    at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
    at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
    at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3843)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4342)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
    at org.apache.catalina.core.StandardService.start(StandardService.java:516)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:578)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)

The full stacktrace dump is in the attached file.


spring-context.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans    xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
   
    <bean id="jpaVendorAdapter" class="org.springframework.orm.jpa.vendor.EclipseLinkJpaVendorAdapter">
        <property name="databasePlatform" value="org.eclipse.persistence.platform.database.MySQLPlatform" />
        <property name="generateDdl" value="true" />
        <property name="showSql" value="true" />
        <property name="database" value="MYSQL" />
    </bean>

    <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
        <property name="jpaVendorAdapter" ref="jpaVendorAdapter" />
        <property name="persistenceXmlLocation" value="WEB-INF/spring/persistence.xml" />
        <property name="persistenceUnitName" value="ibslogic" />
    </bean>

    <context:load-time-weaver />

    <bean id="providerManager" class="dk.logiksyndikatet.ibslogic.manager.ProviderManager">                     <----- THIS IS HERE I HAVE A PROBLEM. It does not work with EntityManagerFactory or EntityManager ! How do i do it ?
        <property name="entityManager" ref="entityManagerFactory" />
    </bean>

    <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
   
    <!-- enable the configuration of transactional behavior based on annotations -->
    <tx:annotation-driven transaction-manager="txManager" />
   
    <bean id="txManager" class="org.springframework.orm.jpa.JpaTransactionManager">
        <property name="entityManagerFactory" ref="entityManagerFactory" />
    </bean>     
</beans>


persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0"
    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">
    <persistence-unit name="ibslogic">
        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <class>dk.logiksyndikatet.ibslogic.domain.Settings</class>
        <properties>
            <property name="eclipselink.jdbc.user" value="ibslogicuser"/>
            <property name="eclipselink.jdbc.password" value="ibslogicpassword"/>
            <property name="eclipselink.jdbc.driver" value="com.mysql.jdbc.Driver"/>
            <property name="eclipselink.jdbc.url" value="jdbc:mysql://localhost:3306/ibslogic"/>
            <property name="eclipselink.ddl-generation" value="create-tables"/>
            <property name="eclipselink.ddl-generation.output-mode" value="sql-script" />
            <property name="eclipselink.weaving" value="false" />
        </properties>
    </persistence-unit>
</persistence>


web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_4.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_4.xsd"
    id="NewHairID" version="2.4">
   
    <taglib>
        <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
        <taglib-location>/WEB-INF/classes/tlds/fmt.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>http://java.sun.com/jstl/fmt-rt</taglib-uri>
        <taglib-location>/WEB-INF/classes/tlds/fmt-rt.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
        <taglib-location>/WEB-INF/classes/tlds/c.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>http://java.sun.com/jstl/core-rt</taglib-uri>
        <taglib-location>/WEB-INF/classes/tlds/c-rt.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>http://java.sun.com/jstl/sql</taglib-uri>
        <taglib-location>/WEB-INF/classes/tlds/sql.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>http://java.sun.com/jstl/sql-rt</taglib-uri>
        <taglib-location>/WEB-INF/classes/tlds/sql-rt.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>http://java.sun.com/jstl/x</taglib-uri>
        <taglib-location>/WEB-INF/classes/tlds/x.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>http://java.sun.com/jstl/x-rt</taglib-uri>
        <taglib-location>/WEB-INF/classes/tlds/x-rt.tld</taglib-location>
    </taglib>

    <display-name>newhair</display-name>

    <filter>
        <display-name>Stripes Filter</display-name>
        <filter-name>StripesFilter</filter-name>
        <filter-class>net.sourceforge.stripes.controller.StripesFilter</filter-class>
       
        <init-param>
            <param-name>Configuration.Class</param-name>
            <param-value>net.sourceforge.stripes.config.RuntimeConfiguration</param-value>
        </init-param>
       
        <init-param>
            <param-name>ActionResolver.Packages</param-name>
            <param-value>dk.logiksyndikatet.applications.newhair</param-value>
        </init-param>

        <init-param>
            <param-name>ActionBeanContext.Class</param-name>
            <param-value>dk.logiksyndikatet.common.stripes.ActionBeanContextNewHair</param-value>
        </init-param>

        <init-param>
            <param-name>LocalePicker.Locales</param-name>
            <param-value>da_DK:UTF-8</param-value>
        </init-param>
       
        <init-param>
            <param-name>Interceptor.Classes</param-name>
            <param-value>
                net.sourceforge.stripes.integration.spring.SpringInterceptor,
                net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor,
                dk.logiksyndikatet.common.stripes.SecurityInterceptor
            </param-value>
        </init-param>
     </filter>
    
    <filter-mapping>
        <filter-name>StripesFilter</filter-name>
        <url-pattern>*.jsp</url-pattern>
        <dispatcher>REQUEST</dispatcher>
    </filter-mapping>

    <filter-mapping>
        <filter-name>StripesFilter</filter-name>
        <servlet-name>StripesDispatcher</servlet-name>
        <dispatcher>REQUEST</dispatcher>
    </filter-mapping>

    <servlet>
        <servlet-name>StripesDispatcher</servlet-name>
        <servlet-class>net.sourceforge.stripes.controller.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>StripesDispatcher</servlet-name>
        <url-pattern>*.htm</url-pattern>
    </servlet-mapping>

    <env-entry>
        <description>IBS provider id</description>
        <env-entry-name>bean/provider-id</env-entry-name>
        <env-entry-type>java.lang.String</env-entry-type>
        <env-entry-value>1</env-entry-value>
    </env-entry>
   
    <listener>
         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/spring-context.xml</param-value>       
    </context-param>
</web-app>


ProviderManager.java
public class ProviderManager {

    @PersistenceContext   
    private EntityManager entityManager;

    ....
}
Feb 19, 2009 10:44:20 AM org.apache.tomcat.util.digester.SetPropertiesRule begin
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:newhair' did not find a matching property.
Feb 19, 2009 10:44:20 AM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib/jvm/java-6-sun-1.6.0.10/jre/lib/i386/client:/usr/lib/jvm/java-6-sun-1.6.0.10/jre/lib/i386:/usr/lib/jvm/java-6-sun-1.6.0.10/jre/../lib/i386:/usr/lib/jvm/java-6-sun-1.6.0.10/jre/lib/i386/client:/usr/lib/jvm/java-6-sun-1.6.0.10/jre/lib/i386:/usr/lib/xulrunner-addons:/usr/lib/xulrunner-addons:/usr/java/packages/lib/i386:/lib:/usr/lib
Feb 19, 2009 10:44:20 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Feb 19, 2009 10:44:20 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 775 ms
Feb 19, 2009 10:44:21 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Feb 19, 2009 10:44:21 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.18
10:44:21,749 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
Feb 19, 2009 10:44:21 AM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext
10:44:21,757  INFO ContextLoader:189 - Root WebApplicationContext: initialization started
10:44:21,820  INFO XmlWebApplicationContext:411 - Refreshing org.springframework.web.context.support.XmlWebApplicationContext@f8968f: display name [Root WebApplicationContext]; startup date [Thu Feb 19 10:44:21 CET 2009]; root of context hierarchy
10:44:21,884 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,886 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,887 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,888 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,891 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,892 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,893 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,897 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,900 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:21,944  INFO XmlBeanDefinitionReader:323 - Loading XML bean definitions from ServletContext resource [/WEB-INF/spring/spring-context.xml]
10:44:21,953 DEBUG DefaultDocumentLoader:72 - Using JAXP provider [com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl]
10:44:22,025 TRACE PluggableSchemaResolver:103 - Trying to resolve XML entity with public id [null] and system id [http://www.springframework.org/schema/beans/spring-beans-2.0.xsd]
10:44:22,027 DEBUG PluggableSchemaResolver:125 - Loading schema mappings from [META-INF/spring.schemas]
10:44:22,030 DEBUG PluggableSchemaResolver:131 - Loaded schema mappings: {http://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd, http://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd, http://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/jms/spring-jms-2.5.xsd=org/springframework/jms/config/spring-jms-2.5.xsd, http://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-2.5.xsd, http://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-2.5.xsd, http://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd, http://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd, http://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd, http://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd, http://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd, http://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd, http://www.springframework.org/schema/jms/spring-jms.xsd=org/springframework/jms/config/spring-jms-2.5.xsd, http://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd, http://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd, http://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd, http://www.springframework.org/schema/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd, http://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd, http://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd}
10:44:22,032 DEBUG PluggableSchemaResolver:114 - Found XML schema [http://www.springframework.org/schema/beans/spring-beans-2.0.xsd] in classpath: org/springframework/beans/factory/xml/spring-beans-2.0.xsd
10:44:22,106 TRACE PluggableSchemaResolver:103 - Trying to resolve XML entity with public id [null] and system id [http://www.springframework.org/schema/context/spring-context-2.5.xsd]
10:44:22,108 DEBUG PluggableSchemaResolver:114 - Found XML schema [http://www.springframework.org/schema/context/spring-context-2.5.xsd] in classpath: org/springframework/context/config/spring-context-2.5.xsd
10:44:22,132 TRACE PluggableSchemaResolver:103 - Trying to resolve XML entity with public id [null] and system id [http://www.springframework.org/schema/tx/spring-tx-2.0.xsd]
10:44:22,134 DEBUG PluggableSchemaResolver:114 - Found XML schema [http://www.springframework.org/schema/tx/spring-tx-2.0.xsd] in classpath: org/springframework/transaction/config/spring-tx-2.0.xsd
10:44:22,153 DEBUG DefaultBeanDefinitionDocumentReader:86 - Loading bean definitions
10:44:22,215 DEBUG DefaultNamespaceHandlerResolver:153 - Loaded mappings [{http://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler, http://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler, http://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler, http://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler, http://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler, http://www.springframework.org/schema/jms=org.springframework.jms.config.JmsNamespaceHandler, http://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler, http://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler}]
10:44:22,252 DEBUG BeanDefinitionParserDelegate:410 - Neither XML 'id' nor 'name' specified - using generated bean name [org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#0]
10:44:22,322 DEBUG XmlBeanDefinitionReader:185 - Loaded 10 bean definitions from location pattern [/WEB-INF/spring/spring-context.xml]
10:44:22,325  INFO XmlWebApplicationContext:426 - Bean factory for application context [org.springframework.web.context.support.XmlWebApplicationContext@f8968f]: org.springframework.beans.factory.support.DefaultListableBeanFactory@1977b9b
10:44:22,326 DEBUG XmlWebApplicationContext:430 - 10 beans defined in org.springframework.web.context.support.XmlWebApplicationContext@f8968f: display name [Root WebApplicationContext]; startup date [Thu Feb 19 10:44:21 CET 2009]; root of context hierarchy
10:44:22,435 DEBUG DefaultListableBeanFactory:214 - Creating shared instance of singleton bean 'org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#0'
10:44:22,438 DEBUG DefaultListableBeanFactory:383 - Creating instance of bean 'org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#0'
10:44:22,484 DEBUG DefaultListableBeanFactory:459 - Eagerly caching bean 'org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#0' to allow for resolving potential circular references
10:44:22,486 DEBUG DefaultListableBeanFactory:411 - Finished creating instance of bean 'org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#0'
10:44:22,488 DEBUG DefaultListableBeanFactory:214 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
10:44:22,493 DEBUG DefaultListableBeanFactory:383 - Creating instance of bean 'org.springframework.aop.config.internalAutoProxyCreator'
10:44:22,506 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:22,523 DEBUG DefaultListableBeanFactory:459 - Eagerly caching bean 'org.springframework.aop.config.internalAutoProxyCreator' to allow for resolving potential circular references
10:44:22,527 TRACE CachedIntrospectionResults:218 - Getting BeanInfo for class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]
10:44:22,540 TRACE CachedIntrospectionResults:234 - Caching PropertyDescriptors for class [org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator]
10:44:22,540 TRACE CachedIntrospectionResults:243 - Found bean property 'advisorAdapterRegistry' of type [org.springframework.aop.framework.adapter.AdvisorAdapterRegistry]
10:44:22,551 TRACE CachedIntrospectionResults:243 - Found bean property 'applyCommonInterceptorsFirst' of type [boolean]
10:44:22,551 TRACE CachedIntrospectionResults:243 - Found bean property 'beanClassLoader' of type [java.lang.ClassLoader]
10:44:22,552 TRACE CachedIntrospectionResults:243 - Found bean property 'beanFactory' of type [org.springframework.beans.factory.BeanFactory]
10:44:22,553 TRACE CachedIntrospectionResults:243 - Found bean property 'class' of type [java.lang.Class]
10:44:22,555 TRACE CachedIntrospectionResults:243 - Found bean property 'customTargetSourceCreators' of type [[Lorg.springframework.aop.framework.autoproxy.TargetSourceCreator;]
10:44:22,555 TRACE CachedIntrospectionResults:243 - Found bean property 'exposeProxy' of type [boolean]
10:44:22,562 TRACE CachedIntrospectionResults:243 - Found bean property 'frozen' of type [boolean]
10:44:22,562 TRACE CachedIntrospectionResults:243 - Found bean property 'interceptorNames' of type [[Ljava.lang.String;]
10:44:22,563 TRACE CachedIntrospectionResults:243 - Found bean property 'opaque' of type [boolean]
10:44:22,564 TRACE CachedIntrospectionResults:243 - Found bean property 'optimize' of type [boolean]
10:44:22,564 TRACE CachedIntrospectionResults:243 - Found bean property 'order' of type [int]
10:44:22,565 TRACE CachedIntrospectionResults:243 - Found bean property 'proxyClassLoader' of type [java.lang.ClassLoader]
10:44:22,566 TRACE CachedIntrospectionResults:243 - Found bean property 'proxyTargetClass' of type [boolean]
10:44:22,592 DEBUG DefaultListableBeanFactory:411 - Finished creating instance of bean 'org.springframework.aop.config.internalAutoProxyCreator'
10:44:22,597 DEBUG XmlWebApplicationContext:648 - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@187c55c]
10:44:22,602 DEBUG XmlWebApplicationContext:672 - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@f593af]
10:44:22,608 DEBUG UiApplicationContextUtils:85 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1ee2c2c]
10:44:22,632  INFO DefaultListableBeanFactory:414 - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1977b9b: defining beans [jpaVendorAdapter,entityManagerFactory,loadTimeWeaver,providerManager,org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#0,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,txManager]; root of factory hierarchy
10:44:22,642 DEBUG DefaultListableBeanFactory:214 - Creating shared instance of singleton bean 'jpaVendorAdapter'
10:44:22,643 DEBUG DefaultListableBeanFactory:383 - Creating instance of bean 'jpaVendorAdapter'
10:44:22,666 DEBUG DefaultListableBeanFactory:459 - Eagerly caching bean 'jpaVendorAdapter' to allow for resolving potential circular references
10:44:22,666 TRACE CachedIntrospectionResults:218 - Getting BeanInfo for class [org.springframework.orm.jpa.vendor.EclipseLinkJpaVendorAdapter]
10:44:22,677 TRACE CachedIntrospectionResults:234 - Caching PropertyDescriptors for class [org.springframework.orm.jpa.vendor.EclipseLinkJpaVendorAdapter]
10:44:22,678 TRACE CachedIntrospectionResults:243 - Found bean property 'class' of type [java.lang.Class]
10:44:22,679 TRACE CachedIntrospectionResults:243 - Found bean property 'database' of type [org.springframework.orm.jpa.vendor.Database]
10:44:22,680 TRACE CachedIntrospectionResults:243 - Found bean property 'databasePlatform' of type [java.lang.String]
10:44:22,681 TRACE CachedIntrospectionResults:243 - Found bean property 'entityManagerFactoryInterface' of type [java.lang.Class]
10:44:22,681 TRACE CachedIntrospectionResults:243 - Found bean property 'entityManagerInterface' of type [java.lang.Class]
10:44:22,682 TRACE CachedIntrospectionResults:243 - Found bean property 'generateDdl' of type [boolean]
10:44:22,687 TRACE CachedIntrospectionResults:243 - Found bean property 'jpaDialect' of type [org.springframework.orm.jpa.JpaDialect]
10:44:22,688 TRACE CachedIntrospectionResults:243 - Found bean property 'jpaPropertyMap' of type [java.util.Map]
10:44:22,689 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceProvider' of type [javax.persistence.spi.PersistenceProvider]
10:44:22,690 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceProviderRootPackage' of type [java.lang.String]
10:44:22,690 TRACE CachedIntrospectionResults:243 - Found bean property 'showSql' of type [boolean]
10:44:22,714 TRACE TypeConverterDelegate:347 - Converting String to [boolean] using property editor [org.springframework.beans.propertyeditors.CustomBooleanEditor@1a85d38]
10:44:22,720 TRACE TypeConverterDelegate:347 - Converting String to [boolean] using property editor [org.springframework.beans.propertyeditors.CustomBooleanEditor@1a85d38]
10:44:22,721 DEBUG BeanUtils:386 - No property editor [org.springframework.orm.jpa.vendor.DatabaseEditor] found for type org.springframework.orm.jpa.vendor.Database according to 'Editor' suffix convention
10:44:22,745 DEBUG DefaultListableBeanFactory:214 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
10:44:22,750 DEBUG DefaultListableBeanFactory:383 - Creating instance of bean 'org.springframework.transaction.config.internalTransactionAdvisor'
10:44:22,751 TRACE InfrastructureAdvisorAutoProxyCreator:400 - Did not attempt to auto-proxy infrastructure class [org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor]
10:44:22,756 DEBUG DefaultListableBeanFactory:459 - Eagerly caching bean 'org.springframework.transaction.config.internalTransactionAdvisor' to allow for resolving potential circular references
10:44:22,757 TRACE CachedIntrospectionResults:218 - Getting BeanInfo for class [org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor]
10:44:22,770 TRACE CachedIntrospectionResults:234 - Caching PropertyDescriptors for class [org.springframework.transaction.interceptor.BeanFactoryTransactionAttributeSourceAdvisor]
10:44:22,771 TRACE CachedIntrospectionResults:243 - Found bean property 'advice' of type [org.aopalliance.aop.Advice]
10:44:22,772 TRACE CachedIntrospectionResults:243 - Found bean property 'adviceBeanName' of type [java.lang.String]
10:44:22,773 TRACE CachedIntrospectionResults:243 - Found bean property 'beanFactory' of type [org.springframework.beans.factory.BeanFactory]
10:44:22,774 TRACE CachedIntrospectionResults:243 - Found bean property 'class' of type [java.lang.Class]
10:44:22,775 TRACE CachedIntrospectionResults:243 - Found bean property 'classFilter' of type [org.springframework.aop.ClassFilter]
10:44:22,776 TRACE CachedIntrospectionResults:243 - Found bean property 'order' of type [int]
10:44:22,777 TRACE CachedIntrospectionResults:243 - Found bean property 'perInstance' of type [boolean]
10:44:22,780 TRACE CachedIntrospectionResults:243 - Found bean property 'pointcut' of type [org.springframework.aop.Pointcut]
10:44:22,781 TRACE CachedIntrospectionResults:243 - Found bean property 'transactionAttributeSource' of type [org.springframework.transaction.interceptor.TransactionAttributeSource]
10:44:22,782 DEBUG DefaultListableBeanFactory:214 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0'
10:44:22,783 DEBUG DefaultListableBeanFactory:383 - Creating instance of bean 'org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0'
10:44:22,787 TRACE CollectionFactory:195 - Creating [java.util.concurrent.ConcurrentHashMap]
10:44:22,791 DEBUG DefaultListableBeanFactory:459 - Eagerly caching bean 'org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0' to allow for resolving potential circular references
10:44:22,795 TRACE CachedIntrospectionResults:218 - Getting BeanInfo for class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]
10:44:22,803 TRACE CachedIntrospectionResults:234 - Caching PropertyDescriptors for class [org.springframework.transaction.annotation.AnnotationTransactionAttributeSource]
10:44:22,804 TRACE CachedIntrospectionResults:243 - Found bean property 'class' of type [java.lang.Class]
10:44:22,815 DEBUG DefaultListableBeanFactory:411 - Finished creating instance of bean 'org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0'
10:44:22,816 DEBUG DefaultListableBeanFactory:411 - Finished creating instance of bean 'org.springframework.transaction.config.internalTransactionAdvisor'
10:44:22,825 DEBUG DefaultListableBeanFactory:411 - Finished creating instance of bean 'jpaVendorAdapter'
10:44:22,825 DEBUG DefaultListableBeanFactory:214 - Creating shared instance of singleton bean 'entityManagerFactory'
10:44:22,827 DEBUG DefaultListableBeanFactory:383 - Creating instance of bean 'entityManagerFactory'
10:44:22,849 DEBUG DefaultListableBeanFactory:459 - Eagerly caching bean 'entityManagerFactory' to allow for resolving potential circular references
10:44:22,850 TRACE CachedIntrospectionResults:218 - Getting BeanInfo for class [org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean]
10:44:22,861 TRACE CachedIntrospectionResults:234 - Caching PropertyDescriptors for class [org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean]
10:44:22,862 TRACE CachedIntrospectionResults:243 - Found bean property 'beanClassLoader' of type [java.lang.ClassLoader]
10:44:22,863 TRACE CachedIntrospectionResults:243 - Found bean property 'class' of type [java.lang.Class]
10:44:22,864 TRACE CachedIntrospectionResults:243 - Found bean property 'dataSource' of type [javax.sql.DataSource]
10:44:22,865 TRACE CachedIntrospectionResults:243 - Found bean property 'entityManagerFactoryInterface' of type [java.lang.Class]
10:44:22,867 TRACE CachedIntrospectionResults:243 - Found bean property 'entityManagerInterface' of type [java.lang.Class]
10:44:22,868 TRACE CachedIntrospectionResults:243 - Found bean property 'jpaDialect' of type [org.springframework.orm.jpa.JpaDialect]
10:44:22,868 TRACE CachedIntrospectionResults:243 - Found bean property 'jpaProperties' of type [java.util.Properties]
10:44:22,869 TRACE CachedIntrospectionResults:243 - Found bean property 'jpaPropertyMap' of type [java.util.Map]
10:44:22,870 TRACE CachedIntrospectionResults:243 - Found bean property 'jpaVendorAdapter' of type [org.springframework.orm.jpa.JpaVendorAdapter]
10:44:22,871 TRACE CachedIntrospectionResults:243 - Found bean property 'loadTimeWeaver' of type [org.springframework.instrument.classloading.LoadTimeWeaver]
10:44:22,871 TRACE CachedIntrospectionResults:243 - Found bean property 'nativeEntityManagerFactory' of type [javax.persistence.EntityManagerFactory]
10:44:22,873 TRACE CachedIntrospectionResults:243 - Found bean property 'object' of type [java.lang.Object]
10:44:22,875 TRACE CachedIntrospectionResults:243 - Found bean property 'objectType' of type [java.lang.Class]
10:44:22,876 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceProvider' of type [javax.persistence.spi.PersistenceProvider]
10:44:22,877 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceProviderClass' of type [java.lang.Class]
10:44:22,880 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceUnitInfo' of type [javax.persistence.spi.PersistenceUnitInfo]
10:44:22,881 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceUnitManager' of type [org.springframework.orm.jpa.persistenceunit.PersistenceUnitManager]
10:44:22,881 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceUnitName' of type [java.lang.String]
10:44:22,882 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceUnitPostProcessors' of type [[Lorg.springframework.orm.jpa.persistenceunit.PersistenceUnitPostProcessor;]
10:44:22,883 TRACE CachedIntrospectionResults:243 - Found bean property 'persistenceXmlLocation' of type [java.lang.String]
10:44:22,883 TRACE CachedIntrospectionResults:243 - Found bean property 'resourceLoader' of type [org.springframework.core.io.ResourceLoader]
10:44:22,884 TRACE CachedIntrospectionResults:243 - Found bean property 'singleton' of type [boolean]
10:44:22,886 DEBUG DefaultListableBeanFactory:214 - Returning cached instance of singleton bean 'jpaVendorAdapter'
10:44:22,888 DEBUG DefaultListableBeanFactory:214 - Creating shared instance of singleton bean 'loadTimeWeaver'
10:44:22,889 DEBUG DefaultListableBeanFactory:383 - Creating instance of bean 'loadTimeWeaver'
10:44:22,893 DEBUG DefaultListableBeanFactory:459 - Eagerly caching bean 'loadTimeWeaver' to allow for resolving potential circular references
10:44:22,894 TRACE CachedIntrospectionResults:218 - Getting BeanInfo for class [org.springframework.context.weaving.DefaultContextLoadTimeWeaver]
10:44:22,904 TRACE CachedIntrospectionResults:234 - Caching PropertyDescriptors for class [org.springframework.context.weaving.DefaultContextLoadTimeWeaver]
10:44:22,905 TRACE CachedIntrospectionResults:243 - Found bean property 'beanClassLoader' of type [java.lang.ClassLoader]
10:44:22,906 TRACE CachedIntrospectionResults:243 - Found bean property 'class' of type [java.lang.Class]
10:44:22,907 TRACE CachedIntrospectionResults:243 - Found bean property 'instrumentableClassLoader' of type [java.lang.ClassLoader]
10:44:22,908 TRACE CachedIntrospectionResults:243 - Found bean property 'throwawayClassLoader' of type [java.lang.ClassLoader]
10:44:22,917  INFO DefaultContextLoadTimeWeaver:72 - Found Spring's JVM agent for instrumentation
10:44:22,918 DEBUG DefaultListableBeanFactory:214 - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
10:44:22,920 DEBUG DefaultListableBeanFactory:411 - Finished creating instance of bean 'loadTimeWeaver'
10:44:22,921 DEBUG DefaultListableBeanFactory:1367 - Invoking afterPropertiesSet() on bean with name 'entityManagerFactory'
10:44:22,934 DEBUG PersistenceUnitReader:181 - Schema resource [persistence_1_0.xsd] not found - falling back to XML parsing without schema validation
10:44:22,943  INFO PersistenceUnitReader:243 - persistence.xml should be located inside META-INF directory; cannot determine persistence unit root URL for ServletContext resource [/WEB-INF/spring/persistence.xml]
10:44:22,951  INFO LocalContainerEntityManagerFactoryBean:221 - Building JPA container EntityManagerFactory for persistence unit 'ibslogic'
[EL Config]: 2009.02.19 10:44:23.636--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.Postal] is being defaulted to: Postal.
[EL Config]: 2009.02.19 10:44:23.654--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.Postal] is being defaulted to: POSTAL.
[EL Config]: 2009.02.19 10:44:23.717--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.Postal.postal] is being defaulted to: POSTAL.
[EL Config]: 2009.02.19 10:44:23.730--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Postal.city] is being defaulted to: CITY.
[EL Config]: 2009.02.19 10:44:23.731--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.Booking] is being defaulted to: Booking.
[EL Config]: 2009.02.19 10:44:23.732--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.Booking] is being defaulted to: BOOKING.
[EL Config]: 2009.02.19 10:44:23.741--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.Booking.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.808--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.Resource] is being defaulted to: Resource.
[EL Config]: 2009.02.19 10:44:23.809--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.Resource] is being defaulted to: RESOURCE.
[EL Config]: 2009.02.19 10:44:23.810--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.Resource.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.811--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Resource.firstName] is being defaulted to: FIRSTNAME.
[EL Config]: 2009.02.19 10:44:23.811--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Resource.lastName] is being defaulted to: LASTNAME.
[EL Config]: 2009.02.19 10:44:23.812--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Resource.pictureName] is being defaulted to: PICTURENAME.
[EL Config]: 2009.02.19 10:44:23.812--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.Resource.bookable] is being defaulted to: BOOKABLE.
[EL Config]: 2009.02.19 10:44:23.819--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.Provider] is being defaulted to: Provider.
[EL Config]: 2009.02.19 10:44:23.820--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.Provider] is being defaulted to: PROVIDER.
[EL Config]: 2009.02.19 10:44:23.821--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.Provider.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.828--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Provider.cvr] is being defaulted to: CVR.
[EL Config]: 2009.02.19 10:44:23.829--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Provider.name] is being defaulted to: NAME.
[EL Config]: 2009.02.19 10:44:23.829--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Provider.address] is being defaulted to: ADDRESS.
[EL Config]: 2009.02.19 10:44:23.830--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Provider.phone] is being defaulted to: PHONE.
[EL Config]: 2009.02.19 10:44:23.833--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow] is being defaulted to: SCHEDULEWINDOW.
[EL Config]: 2009.02.19 10:44:23.834--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.835--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.startHour] is being defaulted to: STARTHOUR.
[EL Config]: 2009.02.19 10:44:23.835--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.stopHour] is being defaulted to: STOPHOUR.
[EL Config]: 2009.02.19 10:44:23.836--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.startMinute] is being defaulted to: STARTMINUTE.
[EL Config]: 2009.02.19 10:44:23.837--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.stopMinute] is being defaulted to: STOPMINUTE.
[EL Config]: 2009.02.19 10:44:23.838--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.Settings] is being defaulted to: Settings.
[EL Config]: 2009.02.19 10:44:23.838--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.Settings] is being defaulted to: SETTINGS.
[EL Config]: 2009.02.19 10:44:23.840--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.Settings.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.843--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.Settings.scheduleStartHour] is being defaulted to: SCHEDULESTARTHOUR.
[EL Config]: 2009.02.19 10:44:23.844--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.Settings.scheduleStopHour] is being defaulted to: SCHEDULESTOPHOUR.
[EL Config]: 2009.02.19 10:44:23.844--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.Settings.bookableDays] is being defaulted to: BOOKABLEDAYS.
[EL Config]: 2009.02.19 10:44:23.845--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.Settings.bookableDayOffset] is being defaulted to: BOOKABLEDAYOFFSET.
[EL Config]: 2009.02.19 10:44:23.846--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.dateFormat] is being defaulted to: DATEFORMAT.
[EL Config]: 2009.02.19 10:44:23.847--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.timeFormat] is being defaulted to: TIMEFORMAT.
[EL Config]: 2009.02.19 10:44:23.849--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.emailSMTPAddress] is being defaulted to: EMAILSMTPADDRESS.
[EL Config]: 2009.02.19 10:44:23.849--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.emailFromAddress] is being defaulted to: EMAILFROMADDRESS.
[EL Config]: 2009.02.19 10:44:23.851--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.emailConfirmationSubject] is being defaulted to: EMAILCONFIRMATIONSUBJECT.
[EL Config]: 2009.02.19 10:44:23.852--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.emailConfirmationBody] is being defaulted to: EMAILCONFIRMATIONBODY.
[EL Config]: 2009.02.19 10:44:23.853--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.emailConfirmationLink] is being defaulted to: EMAILCONFIRMATIONLINK.
[EL Config]: 2009.02.19 10:44:23.854--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.emailConfirmationSignature] is being defaulted to: EMAILCONFIRMATIONSIGNATURE.
[EL Config]: 2009.02.19 10:44:23.854--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.emailPasswordReminderSubject] is being defaulted to: EMAILPASSWORDREMINDERSUBJECT.
[EL Config]: 2009.02.19 10:44:23.856--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Settings.emailPasswordReminderBody] is being defaulted to: EMAILPASSWORDREMINDERBODY.
[EL Config]: 2009.02.19 10:44:23.857--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.Settings.temporalPassDuration] is being defaulted to: TEMPORALPASSDURATION.
[EL Config]: 2009.02.19 10:44:23.858--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Integer dk.logiksyndikatet.ibslogic.domain.Settings.maximumNumberOfBookings] is being defaulted to: MAXIMUMNUMBEROFBOOKINGS.
[EL Config]: 2009.02.19 10:44:23.858--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.schedule.Schedule] is being defaulted to: SCHEDULE.
[EL Config]: 2009.02.19 10:44:23.866--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.877--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.util.Calendar dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.startCalendar] is being defaulted to: STARTCALENDAR.
[EL Config]: 2009.02.19 10:44:23.878--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.util.Calendar dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.stopCalendar] is being defaulted to: STOPCALENDAR.
[EL Config]: 2009.02.19 10:44:23.881--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification] is being defaulted to: ProductTimeSpecification.
[EL Config]: 2009.02.19 10:44:23.882--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification] is being defaulted to: PRODUCTTIMESPECIFICATION.
[EL Config]: 2009.02.19 10:44:23.885--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.886--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification.workIntervals] is being defaulted to: WORKINTERVALS.
[EL Config]: 2009.02.19 10:44:23.886--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private int dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification.breakIntervals] is being defaulted to: BREAKINTERVALS.
[EL Config]: 2009.02.19 10:44:23.887--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.Product] is being defaulted to: Product.
[EL Config]: 2009.02.19 10:44:23.888--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.Product] is being defaulted to: PRODUCT.
[EL Config]: 2009.02.19 10:44:23.891--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.Product.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.892--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Product.name] is being defaulted to: NAME.
[EL Config]: 2009.02.19 10:44:23.894--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.Product.description] is being defaulted to: DESCRIPTION.
[EL Config]: 2009.02.19 10:44:23.896--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.math.BigDecimal dk.logiksyndikatet.ibslogic.domain.Product.price] is being defaulted to: PRICE.
[EL Config]: 2009.02.19 10:44:23.904--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private dk.logiksyndikatet.ibslogic.constant.Gender dk.logiksyndikatet.ibslogic.domain.Product.gender] is being defaulted to: GENDER.
[EL Config]: 2009.02.19 10:44:23.912--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.Product.hidden] is being defaulted to: HIDDEN.
[EL Config]: 2009.02.19 10:44:23.913--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate] is being defaulted to: WeeklyHourTemplate.
[EL Config]: 2009.02.19 10:44:23.914--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate] is being defaulted to: WEEKLYHOURTEMPLATE.
[EL Config]: 2009.02.19 10:44:23.918--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.919--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private dk.logiksyndikatet.common.type.Dividable dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.weekNumbering] is being defaulted to: WEEKNUMBERING.
[EL Config]: 2009.02.19 10:44:23.920--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.mondayFrom] is being defaulted to: MONDAYFROM.
[EL Config]: 2009.02.19 10:44:23.920--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.mondayTo] is being defaulted to: MONDAYTO.
[EL Config]: 2009.02.19 10:44:23.921--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.mondayNA] is being defaulted to: MONDAYNA.
[EL Config]: 2009.02.19 10:44:23.921--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.tuesdayFrom] is being defaulted to: TUESDAYFROM.
[EL Config]: 2009.02.19 10:44:23.922--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.tuesdayTo] is being defaulted to: TUESDAYTO.
[EL Config]: 2009.02.19 10:44:23.922--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.tuesdayNA] is being defaulted to: TUESDAYNA.
[EL Config]: 2009.02.19 10:44:23.923--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.wedensdayFrom] is being defaulted to: WEDENSDAYFROM.
[EL Config]: 2009.02.19 10:44:23.924--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.wedensdayTo] is being defaulted to: WEDENSDAYTO.
[EL Config]: 2009.02.19 10:44:23.924--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.wedensdayNA] is being defaulted to: WEDENSDAYNA.
[EL Config]: 2009.02.19 10:44:23.925--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.thursdayFrom] is being defaulted to: THURSDAYFROM.
[EL Config]: 2009.02.19 10:44:23.939--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.thursdayTo] is being defaulted to: THURSDAYTO.
[EL Config]: 2009.02.19 10:44:23.940--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.thursdayNA] is being defaulted to: THURSDAYNA.
[EL Config]: 2009.02.19 10:44:23.940--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.fridayFrom] is being defaulted to: FRIDAYFROM.
[EL Config]: 2009.02.19 10:44:23.941--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.fridayTo] is being defaulted to: FRIDAYTO.
[EL Config]: 2009.02.19 10:44:23.941--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.fridayNA] is being defaulted to: FRIDAYNA.
[EL Config]: 2009.02.19 10:44:23.941--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.saturdayFrom] is being defaulted to: SATURDAYFROM.
[EL Config]: 2009.02.19 10:44:23.942--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.saturdayTo] is being defaulted to: SATURDAYTO.
[EL Config]: 2009.02.19 10:44:23.942--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.saturdayNA] is being defaulted to: SATURDAYNA.
[EL Config]: 2009.02.19 10:44:23.942--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.sundayFrom] is being defaulted to: SUNDAYFROM.
[EL Config]: 2009.02.19 10:44:23.943--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.sundayTo] is being defaulted to: SUNDAYTO.
[EL Config]: 2009.02.19 10:44:23.943--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private boolean dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.sundayNA] is being defaulted to: SUNDAYNA.
[EL Config]: 2009.02.19 10:44:23.945--ServerSession(1398720)--Thread(Thread[main,5,main])--The alias name for the entity class [class dk.logiksyndikatet.ibslogic.domain.UserProfile] is being defaulted to: UserProfile.
[EL Config]: 2009.02.19 10:44:23.946--ServerSession(1398720)--Thread(Thread[main,5,main])--The table name for entity [class dk.logiksyndikatet.ibslogic.domain.UserProfile] is being defaulted to: USERPROFILE.
[EL Config]: 2009.02.19 10:44:23.952--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.Long dk.logiksyndikatet.ibslogic.domain.UserProfile.id] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:23.953--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.UserProfile.email] is being defaulted to: EMAIL.
[EL Config]: 2009.02.19 10:44:23.954--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.UserProfile.password] is being defaulted to: PASSWORD.
[EL Config]: 2009.02.19 10:44:23.954--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.UserProfile.firstName] is being defaulted to: FIRSTNAME.
[EL Config]: 2009.02.19 10:44:23.956--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.UserProfile.lastName] is being defaulted to: LASTNAME.
[EL Config]: 2009.02.19 10:44:23.959--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.util.Date dk.logiksyndikatet.ibslogic.domain.UserProfile.createDate] is being defaulted to: CREATEDATE.
[EL Config]: 2009.02.19 10:44:23.960--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.lang.String dk.logiksyndikatet.ibslogic.domain.UserProfile.bookingCode] is being defaulted to: BOOKINGCODE.
[EL Config]: 2009.02.19 10:44:23.961--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private java.util.Date dk.logiksyndikatet.ibslogic.domain.UserProfile.bookingCodeCreateDate] is being defaulted to: BOOKINGCODECREATEDATE.
[EL Config]: 2009.02.19 10:44:23.962--ServerSession(1398720)--Thread(Thread[main,5,main])--The column name for element [private dk.logiksyndikatet.ibslogic.constant.SecurityType dk.logiksyndikatet.ibslogic.domain.UserProfile.securityType] is being defaulted to: SECURITYTYPE.
[EL Config]: 2009.02.19 10:44:23.967--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.UserProfile.resource] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Resource.
[EL Config]: 2009.02.19 10:44:24.031--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.UserProfile.resource] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.034--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.UserProfile.resource] is being defaulted to: RESOURCE_ID.
[EL Config]: 2009.02.19 10:44:24.035--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.UserProfile.bookings] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Booking.
[EL Config]: 2009.02.19 10:44:24.085--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.UserProfile dk.logiksyndikatet.ibslogic.domain.Booking.user] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.UserProfile.
[EL Config]: 2009.02.19 10:44:24.086--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.UserProfile dk.logiksyndikatet.ibslogic.domain.Booking.user] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.086--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.UserProfile dk.logiksyndikatet.ibslogic.domain.Booking.user] is being defaulted to: USER_ID.
[EL Config]: 2009.02.19 10:44:24.088--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.resource] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Resource.
[EL Config]: 2009.02.19 10:44:24.089--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.resource] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.089--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.resource] is being defaulted to: RESOURCE_ID.
[EL Config]: 2009.02.19 10:44:24.090--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.scheduleWindows] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.
[EL Config]: 2009.02.19 10:44:24.201--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.schedule.Schedule dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.schedule] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.
[EL Config]: 2009.02.19 10:44:24.202--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.schedule.Schedule dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.schedule] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.203--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.schedule.Schedule dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.schedule] is being defaulted to: SCHEDULE_ID.
[EL Config]: 2009.02.19 10:44:24.203--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Product.provider] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Provider.
[EL Config]: 2009.02.19 10:44:24.203--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Product.provider] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.204--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Product.provider] is being defaulted to: PROVIDER_ID.
[EL Config]: 2009.02.19 10:44:24.204--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.Product.bookings] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Booking.
[EL Config]: 2009.02.19 10:44:24.205--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Product dk.logiksyndikatet.ibslogic.domain.Booking.product] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Product.
[EL Config]: 2009.02.19 10:44:24.205--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Product dk.logiksyndikatet.ibslogic.domain.Booking.product] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.206--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Product dk.logiksyndikatet.ibslogic.domain.Booking.product] is being defaulted to: PRODUCT_ID.
[EL Config]: 2009.02.19 10:44:24.206--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.Product.productTimeSpecification] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification.
[EL Config]: 2009.02.19 10:44:24.207--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Product dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification.product] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Product.
[EL Config]: 2009.02.19 10:44:24.208--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Product dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification.product] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.208--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Product dk.logiksyndikatet.ibslogic.domain.ProductTimeSpecification.product] is being defaulted to: PRODUCT_ID.
[EL Config]: 2009.02.19 10:44:24.209--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.provider] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Provider.
[EL Config]: 2009.02.19 10:44:24.209--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.provider] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.210--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.provider] is being defaulted to: PROVIDER_ID.
[EL Config]: 2009.02.19 10:44:24.211--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.resource] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Resource.
[EL Config]: 2009.02.19 10:44:24.212--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.resource] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.213--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Resource dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.resource] is being defaulted to: RESOURCE_ID.
[EL Config]: 2009.02.19 10:44:24.213--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Postal dk.logiksyndikatet.ibslogic.domain.Provider.postal] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Postal.
[EL Config]: 2009.02.19 10:44:24.214--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Postal dk.logiksyndikatet.ibslogic.domain.Provider.postal] is being defaulted to: POSTAL.
[EL Config]: 2009.02.19 10:44:24.214--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Postal dk.logiksyndikatet.ibslogic.domain.Provider.postal] is being defaulted to: POSTAL_POSTAL.
[EL Config]: 2009.02.19 10:44:24.214--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Settings dk.logiksyndikatet.ibslogic.domain.Provider.settings] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Settings.
[EL Config]: 2009.02.19 10:44:24.216--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Settings dk.logiksyndikatet.ibslogic.domain.Provider.settings] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.217--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Settings dk.logiksyndikatet.ibslogic.domain.Provider.settings] is being defaulted to: SETTINGS_ID.
[EL Config]: 2009.02.19 10:44:24.218--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.Provider.weeklyHourTemplates] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.
[EL Config]: 2009.02.19 10:44:24.226--ServerSession(1398720)--Thread(Thread[main,5,main])--The join table name for the many to many mapping [private java.util.List dk.logiksyndikatet.ibslogic.domain.Provider.weeklyHourTemplates] is being defaulted to: PROVIDER_WEEKLYHOURTEMPLATE.
[EL Config]: 2009.02.19 10:44:24.227--ServerSession(1398720)--Thread(Thread[main,5,main])--The source primary key column name for the many to many mapping [private java.util.List dk.logiksyndikatet.ibslogic.domain.Provider.weeklyHourTemplates] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.227--ServerSession(1398720)--Thread(Thread[main,5,main])--The source foreign key column name for the many to many mapping [private java.util.List dk.logiksyndikatet.ibslogic.domain.Provider.weeklyHourTemplates] is being defaulted to: Provider_ID.
[EL Config]: 2009.02.19 10:44:24.228--ServerSession(1398720)--Thread(Thread[main,5,main])--The target primary key column name for the many to many mapping [private java.util.List dk.logiksyndikatet.ibslogic.domain.Provider.weeklyHourTemplates] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.228--ServerSession(1398720)--Thread(Thread[main,5,main])--The target foreign key column name for the many to many mapping [private java.util.List dk.logiksyndikatet.ibslogic.domain.Provider.weeklyHourTemplates] is being defaulted to: weeklyHourTemplates_ID.
[EL Config]: 2009.02.19 10:44:24.229--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.Provider.resources] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Resource.
[EL Config]: 2009.02.19 10:44:24.229--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Resource.provider] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Provider.
[EL Config]: 2009.02.19 10:44:24.230--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Resource.provider] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.230--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Resource.provider] is being defaulted to: PROVIDER_ID.
[EL Config]: 2009.02.19 10:44:24.231--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.Provider.products] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Product.
[EL Config]: 2009.02.19 10:44:24.232--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.Booking.scheduleWindows] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.
[EL Config]: 2009.02.19 10:44:24.233--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the many to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Booking dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.booking] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Booking.
[EL Config]: 2009.02.19 10:44:24.234--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Booking dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.booking] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.234--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Booking dk.logiksyndikatet.ibslogic.domain.schedule.ScheduleWindow.booking] is being defaulted to: BOOKING_ID.
[EL Config]: 2009.02.19 10:44:24.236--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [private java.util.List dk.logiksyndikatet.ibslogic.domain.Resource.schedules] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.schedule.Schedule.
[EL Config]: 2009.02.19 10:44:24.237--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one mapping element [private dk.logiksyndikatet.ibslogic.domain.UserProfile dk.logiksyndikatet.ibslogic.domain.Resource.userProfile] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.UserProfile.
[EL Config]: 2009.02.19 10:44:24.238--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.UserProfile dk.logiksyndikatet.ibslogic.domain.Resource.userProfile] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.238--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.UserProfile dk.logiksyndikatet.ibslogic.domain.Resource.userProfile] is being defaulted to: USERPROFILE_ID.
[EL Config]: 2009.02.19 10:44:24.238--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to many mapping element [protected java.util.List dk.logiksyndikatet.ibslogic.domain.Resource.weeklyHourTemplates] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.WeeklyHourTemplate.
[EL Config]: 2009.02.19 10:44:24.239--ServerSession(1398720)--Thread(Thread[main,5,main])--The target entity (reference) class for the one to one mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Settings.provider] is being defaulted to: class dk.logiksyndikatet.ibslogic.domain.Provider.
[EL Config]: 2009.02.19 10:44:24.239--ServerSession(1398720)--Thread(Thread[main,5,main])--The primary key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Settings.provider] is being defaulted to: ID.
[EL Config]: 2009.02.19 10:44:24.240--ServerSession(1398720)--Thread(Thread[main,5,main])--The foreign key column name for the mapping element [private dk.logiksyndikatet.ibslogic.domain.Provider dk.logiksyndikatet.ibslogic.domain.Settings.provider] is being defaulted to: PROVIDER_ID.
10:44:24,250 DEBUG DefaultListableBeanFactory:214 - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
10:44:24,254 DEBUG DefaultListableBeanFactory:411 - Finished creating instance of bean 'entityManagerFactory'
10:44:24,255 DEBUG DefaultListableBeanFactory:214 - Returning cached instance of singleton bean 'loadTimeWeaver'
10:44:24,255 DEBUG DefaultListableBeanFactory:214 - Creating shared instance of singleton bean 'providerManager'
10:44:24,256 DEBUG DefaultListableBeanFactory:383 - Creating instance of bean 'providerManager'
10:44:24,269 DEBUG InjectionMetadata:69 - Found injected field on class [dk.logiksyndikatet.ibslogic.manager.ProviderManager]: PersistenceElement for private javax.persistence.EntityManager dk.logiksyndikatet.ibslogic.manager.ProviderManager.entityManager
10:44:24,287 DEBUG DefaultListableBeanFactory:459 - Eagerly caching bean 'providerManager' to allow for resolving potential circular references
10:44:24,288 DEBUG InjectionMetadata:103 - Processing injected field of bean 'providerManager': PersistenceElement for private javax.persistence.EntityManager dk.logiksyndikatet.ibslogic.manager.ProviderManager.entityManager
10:44:24,289 DEBUG DefaultListableBeanFactory:214 - Returning cached instance of singleton bean 'entityManagerFactory'
10:44:24,292 DEBUG DefaultListableBeanFactory:214 - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
10:44:24,319 TRACE CachedIntrospectionResults:218 - Getting BeanInfo for class [dk.logiksyndikatet.ibslogic.manager.ProviderManager]
10:44:24,327 TRACE CachedIntrospectionResults:234 - Caching PropertyDescriptors for class [dk.logiksyndikatet.ibslogic.manager.ProviderManager]
10:44:24,328 TRACE CachedIntrospectionResults:243 - Found bean property 'class' of type [java.lang.Class]
10:44:24,329 TRACE CachedIntrospectionResults:243 - Found bean property 'currentProvider' of type [dk.logiksyndikatet.ibslogic.domain.Provider]
10:44:24,330 TRACE CachedIntrospectionResults:243 - Found bean property 'entityManager' of type [javax.persistence.EntityManager]
10:44:24,331 TRACE CachedIntrospectionResults:243 - Found bean property 'postalByPostal'
10:44:24,333 TRACE CachedIntrospectionResults:243 - Found bean property 'userManager' of type [dk.logiksyndikatet.ibslogic.manager.UserManager]
10:44:24,334 DEBUG DefaultListableBeanFactory:214 - Returning cached instance of singleton bean 'entityManagerFactory'
10:44:24,337 DEBUG BeanUtils:386 - No property editor [javax.persistence.EntityManagerEditor] found for type javax.persistence.EntityManager according to 'Editor' suffix convention
10:44:24,346  INFO DefaultListableBeanFactory:421 - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1977b9b: defining beans [jpaVendorAdapter,entityManagerFactory,loadTimeWeaver,providerManager,org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor#0,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,txManager]; root of factory hierarchy
10:44:24,367 DEBUG DisposableBeanAdapter:148 - Invoking destroy() on bean with name 'entityManagerFactory'
10:44:24,367  INFO LocalContainerEntityManagerFactoryBean:390 - Closing JPA EntityManagerFactory for persistence unit 'ibslogic'
10:44:24,377 DEBUG DisposableBeanAdapter:148 - Invoking destroy() on bean with name 'loadTimeWeaver'
10:44:24,378  INFO DefaultContextLoadTimeWeaver:117 - Removing all registered transformers for class loader: org.apache.catalina.loader.WebappClassLoader
10:44:24,381 ERROR ContextLoader:215 - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'providerManager' defined in ServletContext resource [/WEB-INF/spring/spring-context.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager': no matching editors or conversion strategy found
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:480)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
	at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
	at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
	at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
	at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
	at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
	at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
	at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
	at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
	at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
	at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3843)
	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4342)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
	at org.apache.catalina.core.StandardService.start(StandardService.java:516)
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
	at org.apache.catalina.startup.Catalina.start(Catalina.java:578)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
Caused by: org.springframework.beans.TypeMismatchException: Failed to convert property value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager': no matching editors or conversion strategy found
	at org.springframework.beans.BeanWrapperImpl.convertForProperty(BeanWrapperImpl.java:391)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.convertForProperty(AbstractAutowireCapableBeanFactory.java:1289)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1250)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1010)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:472)
	... 29 more
Caused by: java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager': no matching editors or conversion strategy found
	at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:231)
	at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:138)
	at org.springframework.beans.BeanWrapperImpl.convertForProperty(BeanWrapperImpl.java:386)
	... 33 more
Feb 19, 2009 10:44:24 AM org.apache.catalina.core.StandardContext listenerStart
SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'providerManager' defined in ServletContext resource [/WEB-INF/spring/spring-context.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager': no matching editors or conversion strategy found
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:480)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
	at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
	at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
	at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
	at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
	at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
	at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
	at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
	at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
	at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
	at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3843)
	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4342)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
	at org.apache.catalina.core.StandardService.start(StandardService.java:516)
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
	at org.apache.catalina.startup.Catalina.start(Catalina.java:578)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
Caused by: org.springframework.beans.TypeMismatchException: Failed to convert property value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager': no matching editors or conversion strategy found
	at org.springframework.beans.BeanWrapperImpl.convertForProperty(BeanWrapperImpl.java:391)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.convertForProperty(AbstractAutowireCapableBeanFactory.java:1289)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1250)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1010)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:472)
	... 29 more
Caused by: java.lang.IllegalArgumentException: Cannot convert value of type [$Proxy19 implementing javax.persistence.EntityManagerFactory,org.springframework.orm.jpa.EntityManagerFactoryInfo] to required type [javax.persistence.EntityManager] for property 'entityManager': no matching editors or conversion strategy found
	at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:231)
	at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:138)
	at org.springframework.beans.BeanWrapperImpl.convertForProperty(BeanWrapperImpl.java:386)
	... 33 more
Feb 19, 2009 10:44:24 AM org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
Feb 19, 2009 10:44:24 AM org.apache.catalina.core.StandardContext start
SEVERE: Context [] startup failed due to previous errors
Feb 19, 2009 10:44:24 AM org.apache.catalina.core.ApplicationContext log
INFO: Closing Spring root WebApplicationContext
Feb 19, 2009 10:44:24 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Feb 19, 2009 10:44:24 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Feb 19, 2009 10:44:24 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/55  config=null
Feb 19, 2009 10:44:24 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 3767 ms


Back to the top