我想在 Jetty 9 中强制使用 https。显然:
<Set name="confidentialPort">443</Set>
在 Jetty 9 中不再起作用。我该如何正确地做?
答案1
这资源说把这个添加到你的 web.xml 中
<web-app>
...
<security-constraint>
<web-resource-collection>
<web-resource-name>Everything in the webapp</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
</web-app>