您的位置:首页 > 运维架构 > Tomcat

记一次tomcat下部署2个spring boot的错误: org.springframework.jmx.export.UnableToRegisterMBeanException: Unable

2020-02-03 02:45 756 查看

项目移植,将另外一台服务器上项目移植到这台服务器后,tomcat突然报错了,打开日志出现如下问题

[code]14-Nov-2019 09:41:02.212 INFO [ContainerBackgroundProcessor[StandardEngine[Catalina]]] org.apache.catalina.startup.HostConfig.undeploy Undeploying context [/Mia]
14-Nov-2019 09:41:02.271 WARNING [ContainerBackgroundProcessor[StandardEngine[Catalina]]] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [Mia] registered the JDBC driver [com.mysql.cj.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
14-Nov-2019 09:41:02.274 WARNING [ContainerBackgroundProcessor[StandardEngine[Catalina]]] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [Mia] appears to have started a thread named [mysql-cj-abandoned-connection-cleanup] 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(ReferenceQueue.java:144)
com.mysql.cj.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:85)
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
java.lang.Thread.run(Thread.java:748)
14-Nov-2019 09:41:02.304 INFO [19867] org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading Illegal access: this web application instance has been stopped already. Could not load []. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load []. The 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.checkStateForResourceLoading(WebappClassLoaderBase.java:1384)
at org.apache.catalina.loader.WebappClassLoaderBase.getResource(WebappClassLoaderBase.java:1034)
at com.mysql.cj.jdbc.AbandonedConnectionCleanupThread.checkThreadContextClassLoader(AbandonedConnectionCleanupThread.java:117)
at com.mysql.cj.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:84)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)

14-Nov-2019 09:41:12.598 INFO [localhost-startStop-27] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive [/usr/local/tomcat/webapps/Mia.war]
14-Nov-2019 09:41:12.614 SEVERE [localhost-startStop-27] org.apache.catalina.startup.ContextConfig.beforeStart Exception fixing docBase for context [/Mia]
java.util.zip.ZipException: error in opening zip file
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:225)
at java.util.zip.ZipFile.<init>(ZipFile.java:155)
at java.util.jar.JarFile.<init>(JarFile.java:166)
at java.util.jar.JarFile.<init>(JarFile.java:103)
at sun.net.www.protocol.jar.URLJarFile.<init>(URLJarFile.java:93)
at sun.net.www.protocol.jar.URLJarFile.getJarFile(URLJarFile.java:69)
at sun.net.www.protocol.jar.JarFileFactory.get(JarFileFactory.java:99)
at sun.net.www.protocol.jar.JarURLConnection.connect(JarURLConnection.java:122)
at sun.net.www.protocol.jar.JarURLConnection.getJarFile(JarURLConnection.java:89)
at org.apache.catalina.startup.ExpandWar.expand(ExpandWar.java:130)
at org.apache.catalina.startup.ContextConfig.fixDocBase(ContextConfig.java:609)
at org.apache.catalina.startup.ContextConfig.beforeStart(ContextConfig.java:742)
at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:301)
at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:94)
at org.apache.catalina.util.LifecycleBase.setStateInternal(LifecycleBase.java:395)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:149)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:754)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:730)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:734)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:980)
at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1852)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)

14-Nov-2019 09:41:12.641 SEVERE [localhost-startStop-27] org.apache.catalina.core.ContainerBase.addChildInternal ContainerBase.addChild: start:
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/Mia]]
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:754)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:730)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:734)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:980)
at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1852)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: org.apache.catalina.LifecycleException: Failed to start component [org.apache.catalina.webresources.StandardRoot@27903bff]
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
at org.apache.catalina.core.StandardContext.resourcesStart(StandardContext.java:4885)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5020)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
... 10 more
Caused by: org.apache.catalina.LifecycleException: Failed to initialize component [org.apache.catalina.webresources.WarResourceSet@16a7e40a]
at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:112)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:140)
at org.apache.catalina.webresources.StandardRoot.startInternal(StandardRoot.java:714)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
... 13 more
Caused by: java.lang.IllegalArgumentException: java.util.zip.ZipException: error in opening zip file
at org.apache.catalina.webresources.AbstractSingleArchiveResourceSet.initInternal(AbstractSingleArchiveResourceSet.java:142)
at org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:107)
... 16 more
Caused by: java.util.zip.ZipException: error in opening zip file
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(ZipFile.java:225)
at java.util.zip.ZipFile.<init>(ZipFile.java:155)
at java.util.jar.JarFile.<init>(JarFile.java:166)
at java.util.jar.JarFile.<init>(JarFile.java:130)
at org.apache.tomcat.util.compat.JreCompat.jarFileNewInstance(JreCompat.java:196)
at org.apache.tomcat.util.compat.JreCompat.jarFileNewInstance(JreCompat.java:181)
at org.apache.catalina.webresources.AbstractSingleArchiveResourceSet.initInternal(AbstractSingleArchiveResourceSet.java:139)
... 17 more

14-Nov-2019 09:41:12.644 SEVERE [localhost-startStop-27] org.apache.catalina.startup.HostConfig.deployWAR Error deploying web application archive [/usr/local/tomcat/webapps/Mia.war]
java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/Mia]]
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:758)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:730)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:734)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:980)
at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1852)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)

14-Nov-2019 09:41:12.645 INFO [localhost-startStop-27] org.apache.catalina.startup.HostConfig.deployWAR Deployment of web application archive [/usr/local/tomcat/webapps/Mia.war] has finished in [47] ms
14-Nov-2019 09:41:52.665 INFO [ContainerBackgroundProcessor[StandardEngine[Catalina]]] org.apache.catalina.startup.HostConfig.undeploy Undeploying context [/Mia]
14-Nov-2019 09:41:52.673 INFO [localhost-startStop-28] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive [/usr/local/tomcat/webapps/Mia.war]
14-Nov-2019 09:41:54.847 WARNING [localhost-startStop-28] org.apache.tomcat.util.descriptor.web.WebXml.setVersion Unknown version string [4.0]. Default version will be used.
14-Nov-2019 09:41:54.984 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/rangeSlider/moment-with-locales.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.984 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/rangeSlider/moment.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.986 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/scrollable/jquery-asScrollbar.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.986 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/scrollable/holder.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.987 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/select2/select2.full.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.987 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/sparklinechart/jquery.sparkline.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.988 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/sweetalert/sweetalert.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.989 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/toastr/toastr.init.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.990 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/jquery.vmap.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.990 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/jquery.vmap.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.991 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/jquery.vmap.sampledata.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.991 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/vector.init.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.992 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.germany.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.992 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.greece.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.993 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.usa.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.993 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.world.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.994 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.brazil.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.994 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.russia.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.995 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.algeria.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.995 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.france.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.995 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.iran.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.996 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.tunisia.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.996 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.argentina.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.997 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.europe.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.997 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.iraq.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.997 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/vector-map/country/jquery.vmap.turkey.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.998 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/weather/jquery.simpleWeather.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:54.999 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/js/lib/weather/weather-init.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.000 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/jsp/config.json] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.000 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/jsp/controller.jsp] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.001 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/jsp/lib/commons-io-2.4.jar] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.001 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/jsp/lib/commons-fileupload-1.3.1.jar] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.001 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/jsp/lib/ueditor-1.1.2.jar] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.004 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/jsp/lib/commons-codec-1.9.jar] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.004 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/jsp/lib/json.jar] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.005 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.005 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/zh-cn] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.005 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.006 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/en.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.007 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/deleteenable.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.007 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/localimage.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.007 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/rotateleftdisable.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.008 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/rotateleftenable.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.008 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/rotaterightdisable.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.008 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/rotaterightenable.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.009 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/upload.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.009 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/addimage.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.011 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/alldeletebtnhoverskin.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.011 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/alldeletebtnupskin.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.011 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/background.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.012 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/button.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.012 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/copy.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.013 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/deletedisable.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.013 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/listbackground.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.013 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/en/images/music.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.014 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/zh-cn/images] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.015 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/zh-cn/zh-cn.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.015 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/zh-cn/images/copy.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.015 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/zh-cn/images/localimage.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.016 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/zh-cn/images/music.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.016 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/lang/zh-cn/images/upload.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.017 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.017 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/iframe.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.018 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.018 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.018 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/dialogbase.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.019 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/css/ueditor.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.019 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/css/ueditor.min.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.020 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/arrow_down.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.020 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/button-bg.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.021 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/charts.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.023 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/cursor_h.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.023 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/cursor_v.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.024 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/filescan.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.024 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/icons.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.024 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/loaderror.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.025 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/lock.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.025 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/pagebreak.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.025 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/sortable.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.026 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/table-cell-align.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.026 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/toolbar_bg.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.027 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/unhighlighted.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.027 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/upload.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.027 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/videologo.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.028 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/wordpaste.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.028 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/anchor.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.029 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/arrow.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.029 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/arrow_up.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.029 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/cancelbutton.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.030 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/cursor_h.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.031 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/cursor_v.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.032 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/dialog-title-bg.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.032 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/highlighted.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.032 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/icons-all.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.033 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/icons.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.033 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/loading.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.033 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/neweditor-tab-bg.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.034 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/scale.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.034 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/spacer.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.035 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/sparator_v.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.035 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/tangram-colorpicker.png] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.035 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/themes/default/images/word.gif] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.037 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/codemirror] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.037 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.037 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/snapscreen] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.038 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/SyntaxHighlighter] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.038 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.039 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.039 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/zeroclipboard] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.039 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/jquery-1.10.2.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.040 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/jquery-1.10.2.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.041 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/xss.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.042 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/codemirror/codemirror.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.042 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/codemirror/codemirror.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.043 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/adapters] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.043 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.043 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/themes] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.044 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/highcharts.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.044 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/highcharts-more.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.045 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/highcharts-more.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.045 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/highcharts.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.045 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/adapters/mootools-adapter.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.046 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/adapters/mootools-adapter.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.046 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/adapters/prototype-adapter.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.047 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/adapters/standalone-framework.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.047 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/adapters/prototype-adapter.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.048 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/adapters/standalone-framework.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.049 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/annotations.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.049 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/annotations.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.050 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/canvas-tools.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.050 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/data.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.051 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/data.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.051 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/drilldown.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.051 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/drilldown.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.052 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/funnel.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.052 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/funnel.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.052 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/heatmap.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.053 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/heatmap.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.053 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/map.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.053 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/no-data-to-display.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.054 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/no-data-to-display.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.054 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/exporting.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.055 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/exporting.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.055 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/map.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.055 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/modules/canvas-tools.src.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.056 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/themes/dark-blue.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.057 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/themes/dark-green.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.057 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/themes/gray.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.057 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/themes/skies.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.058 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/highcharts/themes/grid.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.058 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/snapscreen/UEditorSnapscreen.exe] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.060 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/SyntaxHighlighter/shCore.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.061 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/SyntaxHighlighter/shCoreDefault.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.061 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/font] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.062 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/video-js.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.062 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/video-js.min.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.062 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/video-js.swf] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.063 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/video.dev.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.063 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/video.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.063 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/font/vjs.eot] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.064 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/font/vjs.svg] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.064 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/font/vjs.ttf] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.065 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/video-js/font/vjs.woff] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.065 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.flashonly.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.066 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.066 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.html5only.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.066 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.withoutimage.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.067 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.css] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.067 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.custom.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.068 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.068 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.withoutimage.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.068 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/Uploader.swf] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.069 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.custom.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.069 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.flashonly.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.069 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/webuploader/webuploader.html5only.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.070 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/zeroclipboard/ZeroClipboard.min.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.070 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/zeroclipboard/ZeroClipboard.swf] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.072 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/static/third-party/zeroclipboard/ZeroClipboard.js] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.073 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/templates/login.html] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.074 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/templates/User.html] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.074 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/templates/Addcertificate.html] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.074 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/templates/Certificate.html] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.074 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/templates/Detailednews.html] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:41:55.075 WARNING [localhost-startStop-28] org.apache.catalina.webresources.Cache.getResource Unable to add the resource at [/WEB-INF/classes/templates/newlist.html] to the cache for web application [/Mia] because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
14-Nov-2019 09:42:19.864 SEVERE [localhost-startStop-28] org.apache.catalina.core.ContainerBase.addChildInternal ContainerBase.addChild: start:
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/Mia]]
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:167)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:754)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:730)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:734)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:980)
at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1852)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: org.springframework.jmx.export.UnableToRegisterMBeanException: Unable to register MBean [HikariDataSource (HikariPool-17)] with key 'dataSource'; nested exception is javax.management.InstanceAlreadyExistsException: com.zaxxer.hikari:name=dataSource,type=HikariDataSource
at org.springframework.jmx.export.MBeanExporter.registerBeanNameOrInstance(MBeanExporter.java:625)
at org.springframework.jmx.export.MBeanExporter.lambda$registerBeans$2(MBeanExporter.java:551)
at java.util.HashMap.forEach(HashMap.java:1289)
at org.springframework.jmx.export.MBeanExporter.registerBeans(MBeanExporter.java:551)
at org.springframework.jmx.export.MBeanExporter.afterSingletonsInstantiated(MBeanExporter.java:434)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:862)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:742)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:389)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:311)
at org.springframework.boot.web.servlet.support.SpringBootServletInitializer.run(SpringBootServletInitializer.java:151)
at org.springframework.boot.web.servlet.support.SpringBootServletInitializer.createRootApplicationContext(SpringBootServletInitializer.java:131)
at org.springframework.boot.web.servlet.support.SpringBootServletInitializer.onStartup(SpringBootServletInitializer.java:91)
at org.springframework.web.SpringServletContainerInitializer.onStartup(SpringServletContainerInitializer.java:171)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5225)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
... 10 more
Caused by: javax.management.InstanceAlreadyExistsException: com.zaxxer.hikari:name=dataSource,type=HikariDataSource
at com.sun.jmx.mbeanserver.Repository.addMBean(Repository.java:437)
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerWithRepository(DefaultMBeanServerInterceptor.java:1898)
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerDynamicMBean(DefaultMBeanServerInterceptor.java:966)
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerObject(DefaultMBeanServerInterceptor.java:900)
at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.registerMBean(DefaultMBeanServerInterceptor.java:324)
at com.sun.jmx.mbeanserver.JmxMBeanServer.registerMBean(JmxMBeanServer.java:522)
at org.springframework.jmx.support.MBeanRegistrationSupport.doRegister(MBeanRegistrationSupport.java:137)
at org.springframework.jmx.export.MBeanExporter.registerBeanInstance(MBeanExporter.java:671)
at org.springframework.jmx.export.MBeanExporter.registerBeanNameOrInstance(MBeanExporter.java:615)
... 27 more

14-Nov-2019 09:42:19.864 SEVERE [localhost-startStop-28] org.apache.catalina.startup.HostConfig.deployWAR Error deploying web application archive [/usr/local/tomcat/webapps/Mia.war]
java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/Mia]]
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:758)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:730)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:734)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:980)
at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1852)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)

14-Nov-2019 09:42:19.864 INFO [localhost-startStop-28] org.apache.catalina.startup.HostConfig.deployWAR Deployment of web application archive [/usr/local/tomcat/webapps/Mia.war] has finished in [27,191] ms

但在另外一台上项目是成功的,百度了下。原来是同一个tomcat下不能部署2个spring boot项目。

解决方法:

# JMX
# JMX域名。
spring.jmx.default-domain= 
# 将管理bean暴露给JMX域。
spring.jmx.enabled= true
# MBean服务器bean名称。
spring.jmx.server= mbeanServer

  • 点赞
  • 收藏
  • 分享
  • 文章举报
攀登d=====( ̄▽ ̄*)b 发布了5 篇原创文章 · 获赞 3 · 访问量 514 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐