1. Attached file stack.txt
2. version 8.0.18

2015-02-03 14:01 GMT+03:00 Konstantin Kolinko <[email protected]>:

> 2015-02-03 12:44 GMT+03:00 Vadzim Radchykau <[email protected]>:
> > Hello, everybody! I have a question about context config in Tomcat 8. I
> > migrating project from Tomcat 7 to 8 and have unusual problem: if nothing
> > change in cofig I catched an error:
> > "2015-02-03 12:05:48,310 FIRST_ADMIN ERROR web.context.ContextLoader:331
> >  -> Context initialization failed
> > org.springframework.jmx.export.UnableToRegisterMBeanException: Unable to
> > register MBean [org.apache.tomcat.dbcp.dbcp2.BasicDataSource@434990dd]
> with
> > key 'dataSource'; nested exception is
> > javax.management.InstanceAlreadyExistsException:
> >
> Catalina:type=DataSource,host=localhost,context=/first-admin,class=javax.sql.DataSource,name="jdbc/datasource/first"
> >
> > Part of context:
> > <Resource name="jdbc/datasource/first"
> >               auth="Container"
> >               type="javax.sql.DataSource"
> >               poolPreparedStatements="true"
> >               initialSize="25"
> >               maxActive="100"
> >               maxIdle="100"
> >               minIdle="25"
> >               username="us"
> >               password="pa"
> >               driverClassName="com.mysql.jdbc.Driver"
> >               validationQuery="select 1"
> >               testOnBorrow="true"
> >
> >
> url="jdbc:mysql://localhost:3306/firstproject?useUnicode=true&amp;characterEncoding=UTF-8&amp;profileSQL=false&amp;autoSlowLog=false&amp;slowQueryThresholdMillis=100&amp;autoReconnect=true"/>
> >
> > So, it's works in tomcat 7 without any proble. In Tomcat 8 I can solve
> this
> > problem in 2 ways:
> > 1. By adding to resource: singleton = "false";
> > 2. By adding to resource:
> > factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
> >
> > If I clearly understand tomcat creates datasource for my app and for jmx,
> > but in Tomcat 7 it was single object, in Tomcat 8 it must be differents.
> So
> > my question is why that situation is happend? I coudn't find any
> > information of this change in documentation. And I'm interesting what is
> > better: create single datasource (I think so) or create several by
> factory.
> > Thanks a lot for help!
>
>
> 1. Full stacktrace of javax.management.InstanceAlreadyExistsException =?
>
> 2. Exact version of Tomcat 8.0.x = ?  I suspect that you are using
> some old version, as the last time I remember hearing about similar
> issues was ~2 years ago.
>
>
> Best regards,
> Konstantin Kolinko
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>


-- 


[image: Adamantium]

*Vadim Radchikov | Software Engineer*
*mob:* +375 29 3300032   *skype:* vadzimik
*email:* *[email protected]* <[email protected]>
2015-02-03 14:09:26,471 first-ADMIN ERROR web.context.ContextLoader:331  -> Co
ntext initialization failed
org.springframework.jmx.export.UnableToRegisterMBeanException: Unable to registe
r MBean [org.apache.tomcat.dbcp.dbcp2.BasicDataSource@481a5a10] with key 'dataSo
urce'; nested exception is javax.management.InstanceAlreadyExistsException: Cata
lina:type=DataSource,host=localhost,context=/first-admin,class=javax.sql.DataS
ource,name="jdbc/datasource/first"
        at org.springframework.jmx.export.MBeanExporter.registerBeanNameOrInstan
ce(MBeanExporter.java:613)
        at org.springframework.jmx.export.MBeanExporter.registerBeans(MBeanExpor
ter.java:538)
        at org.springframework.jmx.export.MBeanExporter.afterSingletonsInstantia
ted(MBeanExporter.java:420)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.
preInstantiateSingletons(DefaultListableBeanFactory.java:745)
        at org.springframework.context.support.AbstractApplicationContext.finish
BeanFactoryInitialization(AbstractApplicationContext.java:757)
        at org.springframework.context.support.AbstractApplicationContext.refres
h(AbstractApplicationContext.java:480)
        at org.springframework.web.context.ContextLoader.configureAndRefreshWebA
pplicationContext(ContextLoader.java:403)
        at org.springframework.web.context.ContextLoader.initWebApplicationConte
xt(ContextLoader.java:306)
        at org.springframework.web.context.ContextLoaderListener.contextInitiali
zed(ContextLoaderListener.java:106)
        at org.apache.catalina.core.StandardContext.listenerStart(StandardContex
t.java:4720)
        at org.apache.catalina.core.StandardContext.startInternal(StandardContex
t.java:5154)
        at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
        at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase
.java:725)
        at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:70
1)
        at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:714)

        at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.ja
va:581)
        at org.apache.catalina.startup.HostConfig$DeployDescriptor.run(HostConfi
g.java:1683)
        at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
        at java.util.concurrent.FutureTask.run(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
Caused by: javax.management.InstanceAlreadyExistsException: Catalina:type=DataSo
urce,host=localhost,context=/first-admin,class=javax.sql.DataSource,name="jdbc
/datasource/first"
        at com.sun.jmx.mbeanserver.Repository.addMBean(Unknown Source)
        at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerWithRep
ository(Unknown Source)
        at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerDynamic
MBean(Unknown Source)
        at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerObject(
Unknown Source)
        at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(U
nknown Source)
        at com.sun.jmx.mbeanserver.JmxMBeanServer.registerMBean(Unknown Source)
        at org.springframework.jmx.support.MBeanRegistrationSupport.doRegister(M
BeanRegistrationSupport.java:195)
        at org.springframework.jmx.export.MBeanExporter.registerBeanInstance(MBe
anExporter.java:658)
        at org.springframework.jmx.export.MBeanExporter.registerBeanNameOrInstan
ce(MBeanExporter.java:603)
        ... 21 more
2015-02-03 14:09:28,097 first-ADMIN ERROR [Catalina].[localhost].[/first-adm
in]:182  -> Exception sending context initialized event to listener instance of
class org.springframework.web.context.ContextLoaderListener
org.springframework.jmx.export.UnableToRegisterMBeanException: Unable to registe
r MBean [org.apache.tomcat.dbcp.dbcp2.BasicDataSource@481a5a10] with key 'dataSo
urce'; nested exception is javax.management.InstanceAlreadyExistsException: Cata
lina:type=DataSource,host=localhost,context=/first-admin,class=javax.sql.DataS
ource,name="jdbc/datasource/first"
        at org.springframework.jmx.export.MBeanExporter.registerBeanNameOrInstan
ce(MBeanExporter.java:613)
        at org.springframework.jmx.export.MBeanExporter.registerBeans(MBeanExpor
ter.java:538)
        at org.springframework.jmx.export.MBeanExporter.afterSingletonsInstantia
ted(MBeanExporter.java:420)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.
preInstantiateSingletons(DefaultListableBeanFactory.java:745)
        at org.springframework.context.support.AbstractApplicationContext.finish
BeanFactoryInitialization(AbstractApplicationContext.java:757)
        at org.springframework.context.support.AbstractApplicationContext.refres
h(AbstractApplicationContext.java:480)
        at org.springframework.web.context.ContextLoader.configureAndRefreshWebA
pplicationContext(ContextLoader.java:403)
        at org.springframework.web.context.ContextLoader.initWebApplicationConte
xt(ContextLoader.java:306)
        at org.springframework.web.context.ContextLoaderListener.contextInitiali
zed(ContextLoaderListener.java:106)
        at org.apache.catalina.core.StandardContext.listenerStart(StandardContex
t.java:4720)
        at org.apache.catalina.core.StandardContext.startInternal(StandardContex
t.java:5154)
        at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
        at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase
.java:725)
        at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:70
1)
        at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:714)

        at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.ja
va:581)
        at org.apache.catalina.startup.HostConfig$DeployDescriptor.run(HostConfi
g.java:1683)
        at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
        at java.util.concurrent.FutureTask.run(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
Caused by: javax.management.InstanceAlreadyExistsException: Catalina:type=DataSo
urce,host=localhost,context=/first-admin,class=javax.sql.DataSource,name="jdbc
/datasource/first"
        at com.sun.jmx.mbeanserver.Repository.addMBean(Unknown Source)
        at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerWithRep
ository(Unknown Source)
        at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerDynamic
MBean(Unknown Source)
        at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerObject(
Unknown Source)
        at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(U
nknown Source)
        at com.sun.jmx.mbeanserver.JmxMBeanServer.registerMBean(Unknown Source)
        at org.springframework.jmx.support.MBeanRegistrationSupport.doRegister(M
BeanRegistrationSupport.java:195)
        at org.springframework.jmx.export.MBeanExporter.registerBeanInstance(MBe
anExporter.java:658)
        at org.springframework.jmx.export.MBeanExporter.registerBeanNameOrInstan
ce(MBeanExporter.java:603)
        ... 21 more
03-Feb-2015 14:09:28.148 SEVERE [localhost-startStop-1] org.apache.catalina.core
.StandardContext.startInternal Error listenerStart
03-Feb-2015 14:09:28.184 SEVERE [localhost-startStop-1] org.apache.catalina.core
.StandardContext.startInternal Context [/first-admin] startup failed due to pr
evious errors
03-Feb-2015 14:09:28.301 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [Abandoned connection cleanup thread
] but has failed to stop it. This is very likely to create a memory leak. Stack
trace of thread:
 java.lang.Object.wait(Native Method)
 java.lang.ref.ReferenceQueue.remove(Unknown Source)
 com.mysql.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupT
hread.java:43)
03-Feb-2015 14:09:28.302 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [AsyncAppender-Dispatcher-Thread-5]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 java.lang.Object.wait(Unknown Source)
 org.apache.log4j.AsyncAppender$Dispatcher.run(AsyncAppender.java:548)
 java.lang.Thread.run(Unknown Source)
03-Feb-2015 14:09:28.303 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [AsyncAppender-Dispatcher-Thread-6]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 java.lang.Object.wait(Unknown Source)
 org.apache.log4j.AsyncAppender$Dispatcher.run(AsyncAppender.java:548)
 java.lang.Thread.run(Unknown Source)
03-Feb-2015 14:09:28.309 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [AsyncAppender-Dispatcher-Thread-7]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.net.SocketInputStream.socketRead0(Native Method)
 java.net.SocketInputStream.read(Unknown Source)
 java.net.SocketInputStream.read(Unknown Source)
 com.sun.mail.util.TraceInputStream.read(TraceInputStream.java:97)
 java.io.BufferedInputStream.fill(Unknown Source)
 java.io.BufferedInputStream.read(Unknown Source)
 com.sun.mail.util.LineInputStream.readLine(LineInputStream.java:75)
 com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:1440)
 com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1022)
 com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:584)
 javax.mail.Transport.send0(Transport.java:169)
 javax.mail.Transport.send(Transport.java:98)
 org.apache.log4j.net.SMTPAppender.sendBuffer(SMTPAppender.java:416)
 org.apache.log4j.net.SMTPAppender.append(SMTPAppender.java:256)
 org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:251)
 org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderA
ttachableImpl.java:66)
 org.apache.log4j.AsyncAppender$Dispatcher.run(AsyncAppender.java:586)
 java.lang.Thread.run(Unknown Source)
03-Feb-2015 14:09:28.315 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-1] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.320 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-2] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.335 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-3] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.339 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-4] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.344 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-5] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.349 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-6] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.353 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-7] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.357 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-8] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.361 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-9] but
 has failed to stop it. This is very likely to create a memory leak. Stack trace
 of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.367 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [nexonReportsScheduler_Worker-10] bu
t has failed to stop it. This is very likely to create a memory leak. Stack trac
e of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.372 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-1] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.376 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-2] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.380 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-3] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.385 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-4] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.390 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-5] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.394 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-6] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.399 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-7] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.404 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-8] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.408 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-9] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.413 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [trendingAlertsDailyScheduler_Worker
-10] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.417 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-1]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.421 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-2]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.426 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-3]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.430 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-4]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.436 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-5]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.440 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-6]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.445 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-7]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.449 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-8]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.454 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-9]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.458 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [dashboardReportScheduler_Worker-10]
 but has failed to stop it. This is very likely to create a memory leak. Stack t
race of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.462 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-1]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.468 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-2]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.472 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-3]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.476 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-4]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.481 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-5]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.485 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-6]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.490 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-7]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.494 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-8]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.500 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-9]
but has failed to stop it. This is very likely to create a memory leak. Stack tr
ace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.504 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [affiliateReportScheduler_Worker-10]
 but has failed to stop it. This is very likely to create a memory leak. Stack t
race of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.508 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-1] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.513 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-2] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.517 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-3] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.522 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-4] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.526 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-5] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.531 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-6] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.537 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-7] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.541 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-8] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.546 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-9] but has failed to stop it. This is very likely to create a memory leak. S
tack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.550 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [publisherMetricsReportScheduler_Wor
ker-10] but has failed to stop it. This is very likely to create a memory leak.
Stack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.555 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
1] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.559 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
2] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.563 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
3] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.569 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
4] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.573 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
5] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.578 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
6] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.583 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
7] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.587 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
8] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.591 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
9] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.596 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [failedEventsReportScheduler_Worker-
10] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.601 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
1] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.606 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
2] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.610 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
3] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.615 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
4] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.619 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
5] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.624 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
6] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.628 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
7] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.635 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
8] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.639 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
9] but has failed to stop it. This is very likely to create a memory leak. Stack
 trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.644 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [luceneIndexRebuildScheduler_Worker-
10] but has failed to stop it. This is very likely to create a memory leak. Stac
k trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.648 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-1] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.653 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-2] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.657 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-3] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.662 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-4] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.670 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-5] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.674 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-6] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.679 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-7] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.683 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-8] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.688 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-9] but has failed to stop it. This is very likely to create a memory leak. Sta
ck trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.692 WARNING [localhost-startStop-1] org.apache.catalina.loa
der.WebappClassLoaderBase.clearReferencesThreads The web application [first-ad
min] appears to have started a thread named [hiddenOfferProcessorScheduler_Worke
r-10] but has failed to stop it. This is very likely to create a memory leak. St
ack trace of thread:
 java.lang.Object.wait(Native Method)
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:568)
03-Feb-2015 14:09:28.697 SEVERE [localhost-startStop-1] org.apache.catalina.load
er.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [firs
t-admin] created a ThreadLocal with key of type [org.jgroups.protocols.FC$1] (va
lue [org.jgroups.protocols.FC$1@43006bc7]) and a value of type [java.lang.Boolea
n] (value [false]) but failed to remove it when the web application was stopped.
 Threads are going to be renewed over time to try and avoid a probable memory le
ak.
03-Feb-2015 14:09:28.703 SEVERE [localhost-startStop-1] org.apache.catalina.load
er.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [firs
t-admin] created a ThreadLocal with key of type [org.jgroups.protocols.FlowContr
ol$1] (value [org.jgroups.protocols.FlowControl$1@629efcee]) and a value of type
 [java.lang.Boolean] (value [false]) but failed to remove it when the web applic
ation was stopped. Threads are going to be renewed over time to try and avoid a
probable memory leak.
03-Feb-2015 14:09:28.707 SEVERE [localhost-startStop-1] org.apache.catalina.load
er.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [firs
t-admin] created a ThreadLocal with key of type [org.jgroups.protocols.FlowContr
ol$1] (value [org.jgroups.protocols.FlowControl$1@3c603ceb]) and a value of type
 [java.lang.Boolean] (value [false]) but failed to remove it when the web applic
ation was stopped. Threads are going to be renewed over time to try and avoid a
probable memory leak.
03-Feb-2015 14:09:28.711 SEVERE [localhost-startStop-1] org.apache.catalina.load
er.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [firs
t-admin] created a ThreadLocal with key of type [org.aspectj.weaver.tools.Weavin
gAdaptor$1] (value [org.aspectj.weaver.tools.WeavingAdaptor$1@c929b4f]) and a va
lue of type [java.lang.Boolean] (value [false]) but failed to remove it when the
 web application was stopped. Threads are going to be renewed over time to try a
nd avoid a probable memory leak.
03-Feb-2015 14:09:28.716 SEVERE [localhost-startStop-1] org.apache.catalina.load
er.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [firs
t-admin] created a ThreadLocal with key of type [org.apache.log4j.helpers.Thread
LocalMap] (value [org.apache.log4j.helpers.ThreadLocalMap@4c8c9749]) and a value
 of type [java.util.Hashtable] (value [{}]) but failed to remove it when the web
 application was stopped. Threads are going to be renewed over time to try and a
void a probable memory leak.
03-Feb-2015 14:09:28.720 SEVERE [localhost-startStop-1] org.apache.catalina.load
er.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [firs
t-admin] created a ThreadLocal with key of type [org.aspectj.weaver.tools.Weavin
gAdaptor$1] (value [org.aspectj.weaver.tools.WeavingAdaptor$1@c929b4f]) and a va
lue of type [java.lang.Boolean] (value [false]) but failed to remove it when the
 web application was stopped. Threads are going to be renewed over time to try a
nd avoid a probable memory leak.
03-Feb-2015 14:09:28.730 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDescriptor Deployment of configuration descriptor C:\Work\apa
che-tomcat-8.0.18\conf\Catalina\localhost\first-admin.xml has finished in 35,0
95 ms
03-Feb-2015 14:09:28.731 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deploying web application directory C:\Work\apache-
tomcat-8.0.18\webapps\docs
03-Feb-2015 14:09:28.881 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\Work\apa
che-tomcat-8.0.18\webapps\docs has finished in 150 ms
03-Feb-2015 14:09:28.882 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deploying web application directory C:\Work\apache-
tomcat-8.0.18\webapps\examples
03-Feb-2015 14:09:29.220 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\Work\apa
che-tomcat-8.0.18\webapps\examples has finished in 338 ms
03-Feb-2015 14:09:29.221 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deploying web application directory C:\Work\apache-
tomcat-8.0.18\webapps\host-manager
03-Feb-2015 14:09:29.367 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\Work\apa
che-tomcat-8.0.18\webapps\host-manager has finished in 146 ms
03-Feb-2015 14:09:29.367 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deploying web application directory C:\Work\apache-
tomcat-8.0.18\webapps\manager
03-Feb-2015 14:09:29.500 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\Work\apa
che-tomcat-8.0.18\webapps\manager has finished in 132 ms
03-Feb-2015 14:09:29.500 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deploying web application directory C:\Work\apache-
tomcat-8.0.18\webapps\ROOT
03-Feb-2015 14:09:29.621 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\Work\apa
che-tomcat-8.0.18\webapps\ROOT has finished in 121 ms
03-Feb-2015 14:09:29.622 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deploying web application directory C:\Work\apache-
tomcat-8.0.18\webapps\static
03-Feb-2015 14:09:29.739 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\Work\apa
che-tomcat-8.0.18\webapps\static has finished in 117 ms
03-Feb-2015 14:09:29.744 INFO [main] org.apache.coyote.AbstractProtocol.start St
arting ProtocolHandler ["http-apr-8080"]
03-Feb-2015 14:09:29.749 INFO [main] org.apache.coyote.AbstractProtocol.start St
arting ProtocolHandler ["ajp-apr-8009"]
03-Feb-2015 14:09:29.750 INFO [main] org.apache.catalina.startup.Catalina.start
Server startup in 36189 ms
03-Feb-2015 14:09:31.862 INFO [AsyncAppender-Dispatcher-Thread-7] org.apache.cat
alina.loader.WebappClassLoaderBase.checkStateForResourceLoading Illegal access:
this web application instance has been stopped already. Could not load [com.sun.
mail.util.LineOutputStream]. The following stack trace is thrown for debugging p
urposes as well as to attempt to terminate the thread which caused the illegal a
ccess.
 java.lang.IllegalStateException: Illegal access: this web application instance
has been stopped already. Could not load [com.sun.mail.util.LineOutputStream]. T
he following stack trace is thrown for debugging purposes as well as to attempt
to terminate the thread which caused the illegal access.
        at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourc
eLoading(WebappClassLoaderBase.java:1327)
        at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForClassLo
ading(WebappClassLoaderBase.java:1313)
        at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClas
sLoaderBase.java:1196)
        at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClas
sLoaderBase.java:1157)
        at javax.mail.internet.MimeBodyPart.writeTo(MimeBodyPart.java:1333)
        at javax.mail.internet.MimeMessage.writeTo(MimeMessage.java:1683)
        at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:585)
        at javax.mail.Transport.send0(Transport.java:169)
        at javax.mail.Transport.send(Transport.java:98)
        at org.apache.log4j.net.SMTPAppender.sendBuffer(SMTPAppender.java:416)
        at org.apache.log4j.net.SMTPAppender.append(SMTPAppender.java:256)
        at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:251)

        at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders
(AppenderAttachableImpl.java:66)
        at org.apache.log4j.AsyncAppender$Dispatcher.run(AsyncAppender.java:586)

        at java.lang.Thread.run(Unknown Source)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to