web.xml中的web-resource-name是什么?

时间:2015-02-18 07:46:55

标签: web.xml

以下是我在web.xml文件中使用的标签。

什么是web-resource-name

<security-constraint>
    <web-resource-collection>
        <web-resource-name>profile</web-resource-name>
        <url-pattern>/profile/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
        <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
</security-constraint>

1 个答案:

答案 0 :(得分:3)

我发现a page in the Java EE 6 docs似乎回答了您的问题,并解释了其他一些标签:

  

Web资源集合包含以下子元素:

     
      
  • web-resource-name是您用于此资源的名称。它的使用是可选的。
  •