1

I am getting error and it is not leaving me to create a server in eclipse IDE

What mistake have I done? Can anyone let me know whether there is any specific path for adding Apache.

Philipp
  • 4,645
  • 3
  • 47
  • 80
LotusWorst
  • 31
  • 1
  • 9
  • Exclipse expect a tomcat 8.0 not 8.5 – Jens Aug 02 '16 at 09:20
  • If your directory has all the necessary files of Tomcat 8 then just change the name of the folder to `Tomcat 8.0` and give it a try. – SiddP Aug 02 '16 at 09:22
  • Possible duplicate of [How to use Tomcat 8.5.x and TomEE 7.x with Eclipse?](http://stackoverflow.com/questions/37024876/how-to-use-tomcat-8-5-x-and-tomee-7-x-with-eclipse) – Rupesh Agrawal Aug 02 '16 at 11:27

1 Answers1

1

The Apache Tomcat installation at this directory is version 8.5.3. A Tomcat 8.0 installation is expected.

Eclipse built-in Tomcat server plugin basically detects the server version based on server.info property of org/apache/catalina/util/ServerInfo.properties file of Tomcat's /lib/catalina.jar
Edit version in server.info property using any ZIP or JAR aware tool.
server.info=Apache Tomcat/8.5.3 to server.info=Apache Tomcat/8.0.8.5.3
you click here or stack answer for more details

Community
  • 1
  • 1
Rupesh Agrawal
  • 645
  • 8
  • 22