如何在嵌入式 Jetty 上设置 SSL?

发布于 2024-11-08 01:13:32 字数 309 浏览 0 评论 0原文

我已经嵌入了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖树树初阳… 2024-11-15 01:13:32

Jetty 用户电子邮件组的回复:

大卫,

您需要创建一个实例
SslContextFactory 并配置它
与您的密钥库参数。后
您需要传递该实例
到 SslSelectChannelConnector 的
构造函数。最近修改过
配置文件jetty-ssl.xml显示
它是如何在 XmlConfiguration 中完成的,
并且可以很容易地翻译成
代码。这将记录在 Jetty 中
一有机会就维基百科。

-迈克尔

A response from the Jetty Users Email Group:

David,

You need to create an instance of
SslContextFactory and configure it
with your keystore parameters. After
that you'll need to pass that instance
to the SslSelectChannelConnector's
constructor. Recently modified
configuration file jetty-ssl.xml shows
how it is done in XmlConfiguration,
and could be easily translated into
code. This will be documented in Jetty
Wiki as soon as we get a chance.

-Michael

時窥 2024-11-15 01:13:32

我一直在使用它,到目前为止它对我来说效果很好:

    //Set up SSL keystore
    SslContextFactory sslContextFactory = new SslContextFactory("/etc/mykeystore");
    sslContextFactory.setKeyStorePassword("yourpassword");
    SslSelectChannelConnector selectChannelConnector = new SslSelectChannelConnector(sslContextFactory);
    selectChannelConnector.setPort(4567); //your port

I've been using this and it works just fine for me thus far:

    //Set up SSL keystore
    SslContextFactory sslContextFactory = new SslContextFactory("/etc/mykeystore");
    sslContextFactory.setKeyStorePassword("yourpassword");
    SslSelectChannelConnector selectChannelConnector = new SslSelectChannelConnector(sslContextFactory);
    selectChannelConnector.setPort(4567); //your port
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文