在 Apache Web 服务器上部署 Jersey REST Web 服务
我是一名 .net 开发人员,但昨天我被要求使用 Java 开发一个 Restful Web 服务,我在 google 上搜索了很多,最后我能够使用 Eclipse+Jersey+Tomcat 开发、运行一个“hello world”示例。
但我想知道如何才能在 Apache Web 服务器上部署它,
考虑到我是新手,请给我发一份分步指南。谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apache Web 服务器不支持 servlet 的执行(例如 Tomcat 就支持)。您可以做的是运行 Tomcat 服务器并使用 JK 连接器 将其连接到 Apache。
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.