1 Reply Latest reply on May 12, 2017 5:17 AM by andey

    Deployment issue

    faiksheikh

      unable to deploy my project  giving following error after that remaining packages are not getting loaded

       

      WARN: The method class org.apache.commons.logging.impl.SLF4JLogFactory#release() was invoked.

      WARN: Please see http://www.slf4j.org/codes.html#release for an explanation.

       

      here is the stack trace

      2017-05-11 07:46:41,196 ERROR [org.springframework.web.context.ContextLoader] (main) Context initialization failed

      org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'payrollSchedular' defined in ServletContext resource [/WEB-INF/applicationQuartz

      Context-payroll.xml]: Invocation of init method failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [org.

      quartz.impl.StdSchedulerFactory]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

      Caused by:

      org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [org.quartz.impl.StdSchedulerFactory]: Constructor threw exception; nested except

      ion is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

      Caused by:

      java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

              at org.quartz.impl.StdSchedulerFactory.<init>(StdSchedulerFactory.java:266)

              at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

              at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)

              at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)

              at java.lang.reflect.Constructor.newInstance(Constructor.java:513)

              at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:85)

              at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:60)

              at org.springframework.scheduling.quartz.SchedulerFactoryBean.afterPropertiesSet(SchedulerFactoryBean.java:555)

              at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1201)

              at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1171)

              at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:425)

              at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:251)

              at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:156)

              at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:248)

              at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:160)

              at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:284)

              at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:352)

              at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:244)

              at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:187)

              at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:49)

              at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3856)

              at org.apache.catalina.core.StandardContext.start(StandardContext.java:4361)

              at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:790)

              at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:770)

              at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:553)

              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)

      :

        • 1. Re: Deployment issue
          andey

          You need yo add a SLF4J implementation to your classpath:

          1.slf4j-api.jar

          2.slf4j-jboss-logging.jar

           

          ~~~

          <dependency>

              <groupId>org.slf4j</groupId>

              <artifactId>slf4j-log4j12</artifactId>

              <version>1.7.22</version>

          </dependency>

          ~~~