-1

I have a project made with Eclipse or Netbeans, it's a Java web application, I would like to deploy this application on web, using a free server, It's only a trial for to learn how function, Could you explain how I can do it ?

Frank Pentangeli
  • 336
  • 2
  • 6
  • 20
  • You need to find a site which offers free web hosting with the appropriate web/application server like tomcat or jboss. Then you'll have to deploy your `.war` there. – MaxG Sep 25 '16 at 09:31

1 Answers1

2

You need an application server that supports Java. Tomcat, JBoss, Jetty, any one who fits your needs. Then, just upload your war file into webapps folder (for Tomcat) and it will do the work for you. You can check here some free or trial services that should be enough for learning.

Then, when you kickass deploying web apps, just subscribe some java application server service or, as I do, rent a VPS and install all you need. Give you some more work, but much more flexible. I've been using ovh VPS and for the price, I'm very happy. Good luck ;)

Community
  • 1
  • 1
rmpt
  • 606
  • 1
  • 4
  • 24