Vikas Agrawal
Vikas Agrawal

Reputation: 35

Deploy Java restful web service to live server

I have just learned to create java rest API using jersey and Oracle database. I'm developing in eclipse and using weblogic server to run and test web service on localhost.

My question is what are the options of live servers to deploy this service so that I can access this API in my android application or any web application???

Upvotes: 0

Views: 2849

Answers (1)

Haridas N
Haridas N

Reputation: 549

You can do that. But you have to make sure that all the dependent jars are packaged with the your WAR project(eg; Oracle db related things).

Some blog entries which give you an idea about what are all these servers and which one to pick for open development and common standards - http://blogs.forrester.com/mike_gualtieri/11-07-15-stop_wasting_money_on_weblogic_websphere_and_jboss_application_servers,

and this one http://zeroturnaround.com/rebellabs/the-great-java-application-server-debate-with-tomcat-jboss-glassfish-jetty-and-liberty-profile/

This will give pretty good idea about what is all these servers :)

Upvotes: 3

Related Questions