org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading Illegal access: this web application instance has been stopped already. Could not load [java/lang/Object.class]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
时间: 2024-04-01 17:32:52 浏览: 165
java.lang.NoClassDefFoundError:
这个错误是由于Tomcat的Web应用程序已经停止了,但是Web应用程序的类加载器仍然在尝试加载类。这可能是由于在Web应用程序停止之前,有一个线程正在使用该类加载器加载类,或者在Web应用程序停止之后,还有其它线程在使用该类加载器加载类。解决这个问题的方法是,在Web应用程序停止之前,确保所有线程都已经停止,或者在Web应用程序停止之后,不再使用该类加载器加载类。你需要检查你的代码或者Web应用程序的配置文件,找出哪些线程或者类加载器没有正确关闭,并且进行修改。
阅读全文