有人能告诉我如何在payara 5 上将http重定向到https吗
我在应用程序级别的web.xml和域级别的default-web.xml上都尝试了以下代码,但它没有重定向。
<security-constraint>
<web-resource-collection>
<web-resource-name>Viewpoint Secure URLs</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
您还需要设置重定向端口:https://docs.oracle.com/cd/E26576_01/doc.312/e24938/create-http-redirect.htm#GSRFM00031.在默认的http侦听器中,端口应该已经设置为HTTPS侦听器的端口。如果您使用自定义侦听器,请确保将重定向端口设置为HTTPS端口。如果您的Payara服务器在代理后面运行,则需要将重定向端口设为代理侦听的HTTPS端口,很可能是标准端口443。