在去下载Tomcat时,有7 、 8 、 9 ,由于电脑上装的JDK是1.8所以选择了Tomcat8,然后我非常惊喜的发现有一个Tomcat 8.5.20版本?
在网上搜了一下,发现是对8.0版本的部分优化版,于是本着一个有好插件不用白不用的心理装上了这个8.5版本。。。
于是到了在给eclipse配置的时候,突然发现真TM的是个神(智)奇(障)的版本。。。
因为这个神奇的家伙无法与eclipse绑定,选择8.0或9.0版本都会提示:
The Apache Tomcat installation at this directory is version 8.5.5. A Tomcat 8.0 installation is expected.
在网上搜了一下,发现有两种解决办法:
1.修改tomcat的版本号
在Tomcat 的文件夹中找到lib文件夹里的catalina.jar包,然后双击打开(不是解压缩!!!),选择其中的org\apache\catalina\util
,最后在util包中找到ServerInfo.properties文件,打开(编辑的方式,可以使用记事本),将第16 、 17行改为:
ver.info=Apache Tomcat/8.0.0
server.number=8.0.0
再回到eclipse中正常配置就好。
2.打补丁:
https://bugs.eclipse.org/bugs/attachment.cgi?id=262418&action=edit
Download this patch and put it to the plugins directory of your Eclipse installation. It will replace the default "org.eclipse.jst.server.tomcat.core_1.1.800.v201602282129.jar".
打开eclipse安装路径,放入plugins文件夹中。这样就结束了,不需要重启eclipse。
·