SSL:Tomcat 还是 JBoss?
我实际上在 Tomcat 服务器上部署了一个应用程序,但将来我想我会转向 JBoss。 现在我必须实现使用https进行通信,我不知道是先在Tomcat上实现更好,还是先传递给JBoss然后再实现一切更好。他们之间的https管理有那么大的不同吗?使用JBoss代替Tomcat有什么优势吗?
谢谢贾克瑟
I actually have an application deployed on a Tomcat server but in the future I think I'll pass to JBoss.
Now I have to implement the use of https for communication and I don't know if it's better to implement it first on Tomcat or if is better to pass to JBoss first and then implement everything. Is https management so different between them? Is there any advantage in using JBoss instead of Tomcat?
Thanks
Jaxer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Tomcat 已经支持 SSL。 JBoss 在幕后使用 Tomcat 的一个分支,该分支通过额外的服务(EJB、JMS 等)进行扩展。原来的Tomcat核心一般只是稍作修改。您可以在此处阅读 JBoss SSL HOWTO,如您所见,和Tomcat的HOWTO没有太大区别。
Tomcat already supports SSL. JBoss uses under the covers a fork of Tomcat which is expanded with extra services (EJB, JMS, etc). The original Tomcat core is generally only slightly modified. You can readup the JBoss SSL HOWTO here, which is, as you see, not much different from Tomcat's HOWTO.
经典的方法(对我来说)是仅使用 tomcat(轻得多)并为 Web 服务添加轴堆栈。 https 已经由 tomcat 管理。
The classical way (for me) is to use only tomcat (a lot lighter) and add a axis stack for webservices. Https is already manage by tomcat.
在这两种情况下添加 SSL 都非常简单。从你拥有的开始。
Adding SSL is pretty trivial in both cases. Start with what you have.