developer
developer

Reputation: 9478

Apache Tomcat is missing in Eclipse 3.7

I am planning to using Apache Tomcat for my development purpose in Eclipse IDE. I have created a webservice application, for this I need to configure Installed runtime as Tomcat Server, to run the service.

When I try to install it, I find it was missing in the list of servers.

Tomcat Server Missing

How can I resolve this?

Upvotes: 2

Views: 2135

Answers (2)

Nhi
Nhi

Reputation: 1

I got this problem and found this solution, may be it can help you: - 1st: Copy file servlet-api.jar in folder install tomcat:ex:C:\tomcat\common\lib\servlet-api.jar into folder install java ex: C:\Program Files\java\jdk1.5\jre\lib\ext. -2nd: open: C:\tomcat\conf\context.xml

add Text:

< Context reloadable = “true”>

WEB-INF/web.xml

…….

  • 3rd: Download file tomcatPlugin….

  • unzip into "plugin" folder of eclipse

  • Start eclipse, go to Window\preference\

  • In Preference Tab:

    • Chose Tomcat and config:

    +Tomcat version: Your installed tomcat version

    +Tomcat home: link to folder that you unzip tomcat (C:\Tomcat5.5)

    • Manager App username: admin

    Manager App password: admin

    Clik OK

  • Restart Eclipse

OK. GOOD LUCK ^^

Source: http://maivanha.blogspot.com/2007/11/i.html

Upvotes: 0

Alexis Pigeon
Alexis Pigeon

Reputation: 7512

Window > Show View > Servers. From there, Right click > New > Server and you should see a first group called Apache, with plenty of Tomcats to choose from.

It might depend on the version of Eclipse you are using. I know for sure that Eclipse for Java EE Developers contains these servers, Eclipse Classic or Eclipse for Java Developers might not include them.

Upvotes: 1

Related Questions