Illegal access: this web application instance has been stopped already

tomcat启动报错,在网上查找了许多这个错误的解决方法,包括移除项目重新部署,改tomcat配置文件,mysql重启等等,都没有解决

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:1329)
	at org.apache.catalina.loader.WebappClassLoaderBase.getResource(WebappClassLoaderBase.java:1004)
	at com.mysql.jdbc.AbandonedConnectionCleanupThread.checkContextClassLoaders(AbandonedConnectionCleanupThread.java:90)
	at com.mysql.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:63)
	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)

改到无计可施,最后发现Service层的某个文件没有注解@Service,加上就启动正常了,,,,,

脑阔疼,被自己的粗心坑死,,,,

猜你喜欢

转载自blog.csdn.net/qq_41372922/article/details/83177661