以下是我在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>
答案 0 :(得分:3)
我发现a page in the Java EE 6 docs似乎回答了您的问题,并解释了其他一些标签:
Web资源集合包含以下子元素:
web-resource-name
是您用于此资源的名称。它的使用是可选的。