gpt4 book ai didi

ssl - 以编程方式为 Jetty 9 嵌入式配置 SSL

转载 作者:太空宇宙 更新时间:2023-11-03 12:38:20 26 4
gpt4 key购买 nike

我正在使用 9.0.0.M4 版本的 Jetty,并尝试将其配置为接受 SSL 连接。按照以下说明进行操作: http://www.eclipse.org/jetty/documentation/current/configuring-connectors.html

我已经设法写出一些有用的东西。然而,我写的代码看起来很丑陋而且不必要地复杂。知道如何正确执行此操作吗?

final Server server = new Server(Config.Server.PORT);

SslContextFactory contextFactory = new SslContextFactory();
contextFactory.setKeyStorePath(Config.Location.KEYSTORE_LOCATION);
contextFactory.setKeyStorePassword("******");
SslConnectionFactory sslConnectionFactory = new SslConnectionFactory(contextFactory, org.eclipse.jetty.http.HttpVersion.HTTP_1_1.toString());

HttpConfiguration config = new HttpConfiguration();
config.setSecureScheme("https");
config.setSecurePort(Config.Server.SSL_PORT);
config.setOutputBufferSize(32786);
config.setRequestHeaderSize(8192);
config.setResponseHeaderSize(8192);
HttpConfiguration sslConfiguration = new HttpConfiguration(config);
sslConfiguration.addCustomizer(new SecureRequestCustomizer());
HttpConnectionFactory httpConnectionFactory = new HttpConnectionFactory(sslConfiguration);

ServerConnector connector = new ServerConnector(server, sslConnectionFactory, httpConnectionFactory);
connector.setPort(Config.Server.SSL_PORT);
server.addConnector(connector);

server.start();
server.join();

最佳答案

ServerConnector应该设置一个 SslContextFactory .

您在 HttpConfiguration 中完成的其余工作与设置 SSL 无关。

embedded jetty examples 中维护了一个在嵌入式模式下设置 SSL 的好例子。项目。 http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tree/examples/embedded/src/main/java/org/eclipse/jetty/embedded/LikeJettyXml.java

编辑:更清楚(感谢 Erik)

更新:2016 年 6 月

Eclipse Jetty 项目已将其规范存储库移至 github。

上面的LikeJettyXml.java现在可以在

https://github.com/eclipse/jetty.project/blob/jetty-9.4.x/examples/embedded/src/main/java/org/eclipse/jetty/embedded/LikeJettyXml.java

关于ssl - 以编程方式为 Jetty 9 嵌入式配置 SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14362245/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com