将 HSTS 功能添加到 Tomcat
好好相信你们。
我的Web应用程序在tomcat 6.0.43上运行,并且不使用apache或nginx。
我已经使用以下命令将我的网络从http重定向到https强制执行:
- 网址重定向到 ../webapps/ROOT/index.jsp
<% response.sendRedirect("https://www.epi.com.my/portal/"); %>
- ../webapps/myapp/WEB-INF/web.xml
<security-constraint> <web-resource-collection> <web-resource-name>Protected Context</web-resource-name> <url-pattern>/*</url-pattern> </web-resource-collection> <user-data-constraint> <transport-guarantee>CONFIDENTIAL</transport-guarantee> </user-data-constraint></security-constraint>
在下面添加此类代码的位置
标头添加严格传输安全“最大年龄 = 15768000”
还是雄猫没有这个功能?或者我需要在我的每个java Web应用程序控制器中进行修改。