eclipse启动tomcat服务器报错解决

一、错误信息:Illegal access: this web application instance has been stopped already.Could not load .  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.

背景介绍:web项目发布到tomcat服务器后,启动时报错

解决步骤:

1.选中服务器右键stop,然后Add and Remove从服务器中移除项目,最后clean清理服务器

eclipse启动tomcat服务器报错解决_第1张图片

eclipse启动tomcat服务器报错解决_第2张图片

eclipse启动tomcat服务器报错解决_第3张图片

2. 点击导航栏Project按钮,取消自动编译功能,然后clean项目

eclipse启动tomcat服务器报错解决_第4张图片

eclipse启动tomcat服务器报错解决_第5张图片

3.选中项目右键Build Project 手动编译,然后打开自动编译,最后重新发布到服务器

eclipse启动tomcat服务器报错解决_第6张图片

eclipse启动tomcat服务器报错解决_第7张图片

 eclipse启动tomcat服务器报错解决_第8张图片

二、eclipse启动Maven项目报错:严重: Error initializing endpoint
java.net.BindException: Address already in use: JVM_Bind :8080

eclipse启动tomcat服务器报错解决_第9张图片

错误分析:报错提示8080端口已经被使用,其实是上次启动tomcat服务器没有关闭

解决方案:启动windows任务管理器,将进程javaw.exe关掉

eclipse启动tomcat服务器报错解决_第10张图片

你可能感兴趣的:(eclipse)