Note that there are some explanatory texts on larger screens.

plurals
  1. POSpring static resources mapping and duplicate wiring
    text
    copied!<p>I am trying to map my static resources using spring mvc but it doesn't work</p> <p><strong>springServletContext.xml</strong></p> <pre><code> &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd"&gt; &lt;bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"&gt; &lt;property name="prefix" value="/WEB-INF/resources/pages/"/&gt; &lt;property name="suffix" value=".jsp"/&gt; &lt;/bean&gt; &lt;mvc:resources mapping="/static/**" location="/WEB-INF/resources/static/" /&gt; &lt;/beans&gt; </code></pre> <p><strong>springContext.xml</strong></p> <pre><code> &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" 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-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"&gt; &lt;bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" p:location="/WEB-INF/mysqlConfig.properties" /&gt; &lt;context:annotation-config /&gt; &lt;context:component-scan base-package="com.bakaenterprise"&gt; &lt;/context:component-scan&gt; &lt;bean name="handlerMapping" class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/&gt; &lt;bean name="handlerAdapter" class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/&gt; &lt;bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"&gt; &lt;property name="driverClassName" value="${jdbc.driverClassName}" /&gt; &lt;property name="url" value="${jdbc.url}" /&gt; &lt;property name="username" value="${jdbc.username}" /&gt; &lt;property name="password" value="${jdbc.password}" /&gt; &lt;property name="initialSize" value="15" /&gt; &lt;property name="maxActive" value="20" /&gt; &lt;property name="maxWait" value="5000" /&gt; &lt;property name="validationQuery" value="SELECT 1 FROM file_upload" /&gt; &lt;property name="testOnBorrow" value="true" /&gt; &lt;property name="testWhileIdle" value="true" /&gt; &lt;/bean&gt; &lt;bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"&gt; &lt;property name="sessionFactory" ref="sessionFactory" /&gt; &lt;/bean&gt; &lt;tx:advice id="txAdvice" transaction-manager="transactionManager"&gt; &lt;tx:attributes&gt; &lt;tx:method name="get*" read-only="true" propagation="REQUIRED"/&gt; &lt;tx:method name="*" propagation="REQUIRED"/&gt; &lt;/tx:attributes&gt; &lt;/tx:advice&gt; &lt;tx:annotation-driven transaction-manager="transactionManager"/&gt; &lt;!-- Hibernate Configuration --&gt; &lt;bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean" p:dataSource-ref="dataSource" p:packagesToScan="com.bakaenterprise.beans"&gt; &lt;property name="hibernateProperties"&gt; &lt;props&gt; &lt;prop key="hibernate.dialect"&gt; org.hibernate.dialect.MySQLDialect &lt;/prop&gt; &lt;prop key="hibernate.show_sql"&gt; true &lt;/prop&gt; &lt;prop key="hibernate.format_sql"&gt; true &lt;/prop&gt; &lt;prop key="hibernate.generate_statistics"&gt; true &lt;/prop&gt; &lt;/props&gt; &lt;/property&gt; &lt;/bean&gt; &lt;/beans&gt; </code></pre> <p><strong>web.xml</strong></p> <pre><code> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"&gt; &lt;!-- &lt;servlet&gt; &lt;servlet-name&gt;jersey-serlvet&lt;/servlet-name&gt; &lt;servlet-class&gt; com.sun.jersey.spi.container.servlet.ServletContainer &lt;/servlet-class&gt; &lt;init-param&gt; &lt;param-name&gt;com.sun.jersey.config.property.packages&lt;/param-name&gt; &lt;param-value&gt;com.bakaenterprise.server&lt;/param-value&gt; &lt;/init-param&gt; &lt;load-on-startup&gt;1&lt;/load-on-startup&gt; &lt;/servlet&gt;--&gt; &lt;servlet&gt; &lt;servlet-name&gt;spring-mvc&lt;/servlet-name&gt; &lt;servlet-class&gt;org.springframework.web.servlet.DispatcherServlet&lt;/servlet-class&gt; &lt;init-param&gt; &lt;param-name&gt;contextConfigLocation&lt;/param-name&gt; &lt;param-value&gt; /WEB-INF/springServletContext.xml &lt;/param-value&gt; &lt;/init-param&gt; &lt;load-on-startup&gt;1&lt;/load-on-startup&gt; &lt;/servlet&gt; &lt;servlet-mapping&gt; &lt;servlet-name&gt;spring-mvc&lt;/servlet-name&gt; &lt;url-pattern&gt;/services/*&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; &lt;session-config&gt; &lt;session-timeout&gt; 30 &lt;/session-timeout&gt; &lt;/session-config&gt; &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;jsp-config&gt; &lt;taglib&gt; &lt;taglib-uri&gt;/jstl/core_rt&lt;/taglib-uri&gt; &lt;taglib-location&gt;/WEB-INF/tld/c.tld&lt;/taglib-location&gt; &lt;/taglib&gt; &lt;taglib&gt; &lt;taglib-uri&gt;/jstl/xml_rt&lt;/taglib-uri&gt; &lt;taglib-location&gt;/WEB-INF/tld/x_rt.tld&lt;/taglib-location&gt; &lt;/taglib&gt; &lt;taglib&gt; &lt;taglib-uri&gt;/jstl/fn_rt&lt;/taglib-uri&gt; &lt;taglib-location&gt;/WEB-INF/tld/fn.tld&lt;/taglib-location&gt; &lt;/taglib&gt; &lt;taglib&gt; &lt;taglib-uri&gt;/jstl/fmt_rt&lt;/taglib-uri&gt; &lt;taglib-location&gt;/WEB-INF/tld/fmt.tld&lt;/taglib-location&gt; &lt;/taglib&gt; &lt;/jsp-config&gt; &lt;filter&gt; &lt;filter-name&gt;performance&lt;/filter-name&gt; &lt;filter-class&gt;com.bakaenterprise.util.PerformanceLog&lt;/filter-class&gt; &lt;/filter&gt; &lt;filter-mapping&gt; &lt;filter-name&gt;performance&lt;/filter-name&gt; &lt;url-pattern&gt;/*&lt;/url-pattern&gt; &lt;/filter-mapping&gt; &lt;context-param&gt; &lt;param-name&gt;contextConfigLocation&lt;/param-name&gt; &lt;param-value&gt;/WEB-INF/springContext.xml&lt;/param-value&gt; &lt;/context-param&gt; &lt;listener&gt; &lt;listener-class&gt; org.springframework.web.context.ContextLoaderListener &lt;/listener-class&gt; &lt;/listener&gt; &lt;/web-app&gt; </code></pre> <p><strong>in addition there is some duplicate logging it seems like there is some problem in springContext.xml</strong> </p> <p><strong>Few Logs</strong></p> <pre><code> Using CATALINA_BASE: "C:\Users\haier\AppData\Roaming\NetBeans\7.2.1\apache-tomcat-7.0.27.0_base" Using CATALINA_HOME: "C:\Program Files\Apache Software Foundation\Apache Tomcat 7.0.27" Using CATALINA_TMPDIR: "C:\Users\haier\AppData\Roaming\NetBeans\7.2.1\apache-tomcat-7.0.27.0_base\temp" Using JRE_HOME: "C:\Program Files\Java\jdk1.7.0_13" Using CLASSPATH: "C:\Program Files\Apache Software Foundation\Apache Tomcat 7.0.27\bin\bootstrap.jar;C:\Program Files\Apache Software Foundation\Apache Tomcat 7.0.27\bin\tomcat-juli.jar" Listening for transport dt_shmem at address: tomcat_shared_memory_id Sep 19, 2013 6:24:00 PM 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: C:\Program Files\Java\jdk1.7.0_13\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Java\jdk1.7.0_13\bin;E:\maven\bin;;. Sep 19, 2013 6:24:00 PM org.apache.coyote.AbstractProtocol init INFO: Initializing ProtocolHandler ["http-bio-8084"] Sep 19, 2013 6:24:00 PM org.apache.coyote.AbstractProtocol init INFO: Initializing ProtocolHandler ["ajp-bio-8009"] Sep 19, 2013 6:24:00 PM org.apache.catalina.startup.Catalina load INFO: Initialization processed in 681 ms Sep 19, 2013 6:24:00 PM org.apache.catalina.core.StandardService startInternal INFO: Starting service Catalina Sep 19, 2013 6:24:00 PM org.apache.catalina.core.StandardEngine startInternal INFO: Starting Servlet Engine: Apache Tomcat/7.0.27 Sep 19, 2013 6:24:00 PM org.apache.catalina.startup.HostConfig deployDescriptor INFO: Deploying configuration descriptor C:\Users\haier\AppData\Roaming\NetBeans\7.2.1\apache-tomcat-7.0.27.0_base\conf\Catalina\localhost\app.xml Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/functions is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jstl/xml_rt is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/fmt is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/core is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/core is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/fmt is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/functions is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/sql is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jstl/xml_rt is already defined Sep 19, 2013 6:24:01 PM org.apache.catalina.startup.TaglibUriRule body INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/xml is already defined log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader). log4j:WARN Please initialize the log4j system properly. 6260 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Registered injected element on class [com.bakaenterprise.bl.impl.UserServiceImpl]: AutowiredFieldElement for com.bakaenterprise.dal.ProfileDao com.bakaenterprise.bl.impl.UserServiceImpl.profileDao 6261 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Eagerly caching bean 'userServiceImpl' to allow for resolving potential circular references 6269 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Processing injected method of bean 'userServiceImpl': AutowiredFieldElement for com.bakaenterprise.dal.ProfileDao com.bakaenterprise.bl.impl.UserServiceImpl.profileDao 6269 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'profileDaoImpl' org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'profileMessageDaoImpl' 6594 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating instance of bean 'profileMessageDaoImpl' 6595 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Registered injected element on class [com.bakaenterprise.dal.impl.ProfileMessageDaoImpl]: AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6595 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Eagerly caching bean 'profileMessageDaoImpl' to allow for resolving potential circular references 6625 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Processing injected method of bean 'profileMessageDaoImpl': AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6625 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'sessionManager' 6625 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - Autowiring by type from bean name 'profileMessageDaoImpl' to bean named 'sessionManager' 6625 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 6625 [pool-2-thread-1] DEBUG org.springframework.transaction.annotation.AnnotationTransactionAttributeSource - Adding transactional method 'save' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 6626 [pool-2-thread-1] DEBUG org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'profileMessageDaoImpl' with 0 common interceptors and 1 specific interceptors 6626 [pool-2-thread-1] DEBUG org.springframework.aop.framework.JdkDynamicAopProxy - Creating JDK dynamic proxy: target source is SingletonTargetSource for target object [com.bakaenterprise.dal.impl.ProfileMessageDaoImpl@abb0af] 6643 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Finished creating instance of bean 'profileMessageDaoImpl' 6643 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'searchDaoImpl' 6643 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating instance of bean 'searchDaoImpl' 6644 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Registered injected element on class [com.bakaenterprise.dal.impl.SearchDaoImpl]: AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6644 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Eagerly caching bean 'searchDaoImpl' to allow for resolving potential circular references 6662 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Processing injected method of bean 'searchDaoImpl': AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6663 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'sessionManager' 6663 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - Autowiring by type from bean name 'searchDaoImpl' to bean named 'sessionManager' 6663 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 6663 [pool-2-thread-1] DEBUG org.springframework.transaction.annotation.AnnotationTransactionAttributeSource - Adding transactional method 'save' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 6663 [pool-2-thread-1] DEBUG org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'searchDaoImpl' with 0 common interceptors and 1 specific interceptors 6663 [pool-2-thread-1] DEBUG org.springframework.aop.framework.JdkDynamicAopProxy - Creating JDK dynamic proxy: target source is SingletonTargetSource for target object [com.bakaenterprise.dal.impl.SearchDaoImpl@8f8dd9] 6669 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Finished creating instance of bean 'searchDaoImpl' 6670 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'sessionManager' 6670 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'uploadDaoImpl' 6670 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating instance of bean 'uploadDaoImpl' 6674 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Registered injected element on class [com.bakaenterprise.dal.impl.UploadDaoImpl]: AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6674 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Eagerly caching bean 'uploadDaoImpl' to allow for resolving potential circular references 6693 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Processing injected method of bean 'uploadDaoImpl': AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6693 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'sessionManager' 6693 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - Autowiring by type from bean name 'uploadDaoImpl' to bean named 'sessionManager' 6693 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 6693 [pool-2-thread-1] DEBUG org.springframework.transaction.annotation.AnnotationTransactionAttributeSource - Adding transactional method 'save' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 6693 [pool-2-thread-1] DEBUG org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'uploadDaoImpl' with 0 common interceptors and 1 specific interceptors 6693 [pool-2-thread-1] DEBUG org.springframework.aop.framework.JdkDynamicAopProxy - Creating JDK dynamic proxy: target source is SingletonTargetSource for target object [com.bakaenterprise.dal.impl.UploadDaoImpl@fea922] 6697 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Finished creating instance of bean 'uploadDaoImpl' 6697 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'userDaoImpl' 6697 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating instance of bean 'userDaoImpl' 6699 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Registered injected element on class [com.bakaenterprise.dal.impl.UserDaoImpl]: AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6699 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Registered injected element on class [com.bakaenterprise.dal.impl.UserDaoImpl]: AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6699 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Eagerly caching bean 'userDaoImpl' to allow for resolving potential circular references 6699 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Eagerly caching bean 'userDaoImpl' to allow for resolving potential circular references 6717 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Processing injected method of bean 'userDaoImpl': AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6717 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.InjectionMetadata - Processing injected method of bean 'userDaoImpl': AutowiredFieldElement for private com.bakaenterprise.dal.impl.SessionManager com.bakaenterprise.core.base.HibernateDaoSupport.sessionManager 6717 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'sessionManager' 6717 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'sessionManager' 6717 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - Autowiring by type from bean name 'userDaoImpl' to bean named 'sessionManager' 6717 [pool-2-thread-1] DEBUG org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - Autowiring by type from bean name 'userDaoImpl' to bean named 'sessionManager' 6734 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 6734 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 6734 [pool-2-thread-1] DEBUG org.springframework.transaction.annotation.AnnotationTransactionAttributeSource - Adding transactional method 'save' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 6734 [pool-2-thread-1] DEBUG org.springframework.transaction.annotation.AnnotationTransactionAttributeSource - Adding transactional method 'save' with attribute: PROPAGATION_REQUIRED,ISOLATION_DEFAULT; '' 6734 [pool-2-thread-1] DEBUG org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'userDaoImpl' with 0 common interceptors and 1 specific interceptors 6734 [pool-2-thread-1] DEBUG org.springframework.aop.framework.autoproxy.InfrastructureAdvisorAutoProxyCreator - Creating implicit proxy for bean 'userDaoImpl' with 0 common interceptors and 1 specific interceptors 6734 [pool-2-thread-1] DEBUG org.springframework.aop.framework.JdkDynamicAopProxy - Creating JDK dynamic proxy: target source is SingletonTargetSource for target object [com.bakaenterprise.dal.impl.UserDaoImpl@1d1bd7f] 6734 [pool-2-thread-1] DEBUG org.springframework.aop.framework.JdkDynamicAopProxy - Creating JDK dynamic proxy: target source is SingletonTargetSource for target object [com.bakaenterprise.dal.impl.UserDaoImpl@1d1bd7f] 6740 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Finished creating instance of bean 'userDaoImpl' 6740 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Finished creating instance of bean 'userDaoImpl' 6740 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jobsParserImpl' 6740 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jobsParserImpl' 6740 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating instance of bean 'jobsParserImpl' 6740 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating instance of bean 'jobsParserImpl' 6740 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Eagerly caching bean 'jobsParserImpl' to allow for resolving potential circular references 6740 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Eagerly caching bean 'jobsParserImpl' to allow for resolving potential circular references 6749 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 6749 [pool-2-thread-1] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 6750 [pool-2-thread-1] DEBUG </code></pre> <p>Any help would be highly appreciated. </p> <p>Thanks,</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload