1

使用 Jetty 作为应用服务器。如果我在浏览器中输入 IP 地址,如何使其默认为 https?

4

1 回答 1

1

首先,您需要为 https 配置一个连接器,如下所述:

http://www.eclipse.org/jetty/documentation/current/configuring-ssl.html

如果您只想允许 https,请按照此处所述向您的 Web 应用程序添加安全约束:

http://docs.oracle.com/javaee/5/tutorial/doc/bncbe.html#bncbm

这会将发送到 http 连接器的所有请求重定向到 https 连接器。

于 2013-02-28T09:13:13.763 回答