如何在嵌入式 Jetty 上设置 SSL?
我已经嵌入了 jetty 7.x。基本上只是创建一个 SelectChannelConnector 来侦听端口 80 和 WebAppContext 来部署单个 WAR 目录。
我现在需要添加 SSL(所有密钥库内容都已完成),我本想只添加一个 SslSelectChannelConnector,但所有方法都已弃用,没有任何 javadoc 来解释原因以及该怎么做。 Jetty/SSL 文档仅显示一些 XML,而没有描述如何处理它。
任何人都可以为我提供在 Jetty 的嵌入式实例中设置 SSL 的入口点吗?我认为这不会很复杂,我只是不知道在当前版本中从哪个类开始。
I've got jetty 7.x embedded. Basically just creating a SelectChannelConnector to listen on port 80 and WebAppContext to deploy a single WAR directory.
I need to add SSL now (all the keystore stuff is done), and I would have guessed to just add an SslSelectChannelConnector, but all the methods are deprecated without any javadocs to explain why, and what to do instead. And the Jetty/SSL docs only show some XML without describing what to do with it.
Can anyone get me the entry point here to setting up SSL an an embedded instance of Jetty? I don't think this will be complicated, I just don't know what class to start with in the current release.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Jetty 用户电子邮件组的回复:
A response from the Jetty Users Email Group:
我一直在使用它,到目前为止它对我来说效果很好:
I've been using this and it works just fine for me thus far: