dbrown0708
dbrown0708

Reputation: 4754

How to determine how MyEclipse deploys Tomcat webapp

I was given a MyEclipse project that deploys an app to Tomcat. The deployment works fine and I can run the app in the MyEclipse IDE.

I prefer to use IntelliJ for development. IntelliJ has the artifact and facet properties screen where I could determine exactly where in the webapp directory classes, resources, and libraries are deployed. Is there a place where I can find out in MyEclipse where it's copying all the parts of the webapp, so I can recreate this project in IntelliJ?

Upvotes: 1

Views: 7003

Answers (1)

Jeremy Goodell
Jeremy Goodell

Reputation: 18962

On the Servers view, double click the tomcat server -- this screen has the information you are looking for. If the Servers window isn't currently displayed, select Window / Show View / Servers.

Upvotes: 2

Related Questions