是否可以 运行 具有使用两个端口的单个连接器的 Jetty 服务器,一个使用相互身份验证而另一个不使用?

Is it possible to run a Jetty server with a single connector using two ports, one that uses mutual authentication and another that does not?

我正在尝试设计一个以两种形式接受传入请求的 Jetty 实例: 1.相互认证 2.非相互认证

是否可以使用具有两个端口的单个连接器来实​​现?

谢谢!

根据设计,ServerConnector 绑定到 1 个且仅绑定到 1 个端口。

如果您需要 2 个单独的端口,则需要 2 个单独的 ServerConnector 配置。

根据您的问题,每个连接器需要不同的 SslContextFactory 配置。