Mubashar
Mubashar

Reputation: 12658

Deploying Jersey REST Webservice on Apache Web Server

I am a dot net developer but yesterday I was asked to develop a Restful Web service using Java, I googled a lot and finally I am able to develop, run a "hello world" example using Eclipse+Jersey+Tomcat.

But I wonder how can I be able to deploy it on Apache Webserver,

Please send me a step by step guide considering me a newbie. Thanks

Upvotes: 1

Views: 1148

Answers (1)

Dirk
Dirk

Reputation: 1903

An Apache webserver does not support the execution of servlets (as e.g. Tomcat does). What you can do is run a Tomcat server and connect it to Apache by using a JK connector.

Upvotes: 1

Related Questions