I created the Excel file in a thread using
OutputStream stream = new FileOutputStream (path+fileName);
Tomcat issued a warning after the object was created
June 11, 2018 3:22:33 afternoon org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc
warning: The web application [ACI] registered the JDBC driver [oracle.jdbc.driver.OracleDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
June 11, 2018 3:22:33 afternoon org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
warning: The web application [ACI] appears to have started a thread named [startAutoChargeBackEmailJob_Worker-0] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
org.apache.commons.logging.LogFactory.getContextClassLoaderInternal (LogFactory.java:859)
org.apache.commons.logging.LogFactory.getFactory (LogFactory.java:423)
org.apache.commons.logging.LogFactory.getLog (LogFactory.java:685)
org.quartz.simpl.SimpleThreadPool.getLog (SimpleThreadPool.java:126)
org.quartz.simpl.SimpleThreadPool$WorkerThread.run (SimpleThreadPool.java:547)
what is the cause of this? has anyone encountered the same situation