Lunar
Lunar

Reputation: 4711

Export a web project

i have made a web application using java pages with eclipse.

But i have no idea how to export it for use?

I was asked to provide a make file or somehting, what other ways can i do this from eclipse?

Upvotes: 3

Views: 7711

Answers (2)

codeomnitrix
codeomnitrix

Reputation: 4249

Just right click on the project and say export war.

There choose the appropriate server runtime for which you have created the project.

Then put that war file inside the webapps folder in case apache tomcat and restart the server.

And you have done. :)

Upvotes: 0

Matt Ball
Matt Ball

Reputation: 359776

It sounds like you need to export it as a WAR file:

  • Right-click the project in Eclipse
  • Choose Export
  • Choose WAR File

    screenshot

Upvotes: 5

Related Questions