The Tomcat server configuration at ServersTomcat v5.5 Server at localhost-config is missing. Check

来源:互联网 发布:国泰安股票收益率数据 编辑:程序博客网 时间:2024/05/29 08:18

问题一:

The Tomcat server configuration at \Servers\Tomcat v5.5 Server at localhost-config is missing. Check the server for errors.

 

被这个问题困扰了好一阵子,各种调试,后来决定将工程重新做一次,还是有问题,没辙了,网上各种搜索,最终找到这个解决方案,很给力,记下来,感谢原作

 

 

1、这个是因为server中已经存在了一个  把server视图打开删除以前那个就可以了 

2、在运行时选中新建一个服务器就行了

 

问题二:

http://localhost:8080/TestTomcat/WEB-INF/Lithium.jsp 在WEB-INF中建立jsp,run总是报错,HTTP Status 404  即访问路径有问题,目前解决方法

http://localhost:8080/TestTomcat/Lithium.jsp 即在Dynamic Web Project 中直接建立jsp,run成功,具体原因不明,以后会搞明白

搞明白了 ! 今天看了马士兵老师的视频 ,居然了 ,这是千万要避讳的错误 , 我做到了。。。==!

 

问题三:

Several ports (8005, 8080, 8009) required by Tomcat v5.5 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).

 

可能重复开启了tomcat    或者 端口被占用   先排查第一种可能 : 关闭 tomcat 服务器 ,关闭其他无关项目 ,重新 run  ,解决问题

 

问题四:

  jsp页面的缓存问题 : 将jsp代码中显示内容更改后 ,在页面却一直没有更新

尝试过各种刷新 删除缓存 ,不好使 ,最后重启myeclipse  ,问题解决

后来想到可能是电脑配置不够高,遂将myeclipse 进行优化,(优化方法百度收索即可 ),再次打开项目刷新,问题解决!