INFO: Illegal access: this web application instance has been stopped already. Could not load java.net.InetAddress

前端 未结 4 784
长发绾君心
长发绾君心 2020-12-05 06:36

I\'m experiencing this kind of exception, can someone help me about this problem?

java.lang.IllegalStateException
at         


        
4条回答
  •  -上瘾入骨i
    2020-12-05 07:10

    I have also experienced this problem recently. In my case the problem was generated by an unhandled exception in javax.servlet.ServletContextListener which was logged in one localhost-date.log. Because of that exception the webapp was not deployed, but an already started java.util.concurrent.Executors was still running which caused another chain of exceptions in catalina-date.log:
    java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load WhatEver.class.

    The solution for my case:

    • check all the Tomcat logs
    • fix exceptions in javax.servlet.ServletContextListener

提交回复
热议问题