Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个Eclipse RCP带有Equinox JettyWeb 服务器的项目。我希望 Jetty 服务器使用SSL.
Eclipse RCP
Equinox Jetty
SSL
我测试了在 Eclipse 的运行配置中设置属性,它工作正常。
-Dorg.eclipse.equinox.http.jetty.https.enabled=true ...
现在我的问题:有没有一种程序化的方式来Jetty使用SSL?
Jetty
将 SSLConnector 添加到您的连接器列表中,例如
SslConnector sslConnector = new SslSelectChannelConnector(sslContextFactory);