始终使用web.xml中的https不起作用

时间:2016-04-30 15:43:02

标签: java-ee ssl https web.xml deployment-descriptor

我想在我的网站上使用始终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>

然而它不起作用。知道我需要做什么吗?

1 个答案:

答案 0 :(得分:1)

您明确允许GETPOST方法使用<http-method-omission>标记访问您的网站。

我认为你的意思是:

    <http-method>GET</http-method>
    <http-method>POST</http-method>

但是最好省略任何HTTP方法的声明,因为你肯定想强迫所有这些声明使用https。