我想在我的网站上使用始终https。我在web.xml文件中有以下内容:
<security-constraint>
<display-name>All access - GET and POST over SSL</display-name>
<web-resource-collection>
<web-resource-name>Common area - GET and POST</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method-omission>GET</http-method-omission>
<http-method-omission>POST</http-method-omission>
</web-resource-collection>
<user-data-constraint>
<description/>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
然而它不起作用。知道我需要做什么吗?
答案 0 :(得分:1)
您明确允许GET
和POST
方法使用<http-method-omission>
标记访问您的网站。
我认为你的意思是:
<http-method>GET</http-method>
<http-method>POST</http-method>
但是最好省略任何HTTP方法的声明,因为你肯定想强迫所有这些声明使用https。