有人可以告诉我如何在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>