web.xml 中的网络资源名称是什么?

What is web-resource-name in 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>

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

A web resource collection consists of the following subelements:

  • web-resource-name is the name you use for this resource. Its use is optional.