web.xml - <http-method>缺席</http-method>

时间:2013-12-18 12:14:46

标签: xml security jsp http-method deployment-descriptor

我想知道我是否在练习题考试中发现了错误:

  

用户已按以下方式在部署描述符web.xml中配置了安全设置:

<security-constraint>
    <web-resource-collection>
        <web-resource-name>ResourceName</web-resource-name>
        <url-pattern>/test.jsp</url-pattern>
    </web-resource-collection>
</security-constraint>
  

用户可以针对test.jsp调用哪些HTTP方法?

正确答案列为,但我认为所有方法都应该有效,因为<http-method>元素不存在。哪个是对的?

1 个答案:

答案 0 :(得分:2)

  

http方法元素

     

该元素声明了哪些HTTP方法(通常是GET或   POST)受安全约束的约束。如果元素   省略,安全约束应用于所有HTTP方法   默认情况下。

web.xml Deployment Descriptor Elements