web.xml文件,或相应的配置文件配置错误

解决方案 »

  1.   

    重新其他tomcat后问题解决了,网上一般说明,没有用到Tomcat异常Illegal access:this web application instance has been stopped already   2006-9-11 11:33:27 org.apache.catalina.loader.WebappClassLoader loadClass  信息: Illegal access: this web application instance has been stopped already (the eventual following stack trace is caused by an error thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access, and has no functional impact)     原因是因为在tomcat重启的时候,因为之前的tomcat中的线程还没有完全关闭,新启动tomcat就会报这个异常,不过这个不影响正常使用,只是跳个异常挺烦人的。   
    解决办法:   将tomcat
    的server.xml中的Context的reloadable设成false。  比如:<Context path="/expert" docBase="expert" debug="0" reloadable="false"> 或者   修改tomcat目录下的context.xml,找到<Context>标签,把reloadble的属性值设为:reloadable="false",即<Context reloadable="false">。 或者   1 配置文件错了
      

  2.   

    关闭、重启tomcat后问题解决了,
      

  3.   

    org.apache.catalina.loader.WebappClassLoader loadClass csdn  问题解决  
    关闭、重启tomcat后问题解决了,