Web project export

I 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 or somehting file, what other ways can I do this from eclipse?

+3
source share
2 answers

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

  • Right Click Project in Eclipse
  • Select Export
  • Select WAR File

    screenshot

+4
source

Just right-click on the project and say that the war is for export.

Select the appropriate server environment for which you created the project.

Then put this war file in the webapps folder in case of apache tomcat and restart the server.

And you did it. :)

0
source

All Articles