我使用 Eclipse 和 AppEngine SDK 1.7.5。
我试图在我的 Google App Engine 项目中验证 war 文件夹。我的 web.xml 包含无效内容:
Invalid content was found starting with element 'url-pattern'.
One of '{"http://java.sun.com/xml/ns/javaee":web-resource-name}'
is expected. web.xml /project/war/WEB-INF line 121 XML Problem
这是错误中提到的 xml:
<security-constraint>
<web-resource-collection>
<url-pattern>/admin/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>admin</role-name>
</auth-constraint>
</security-constraint>
如何修复错误?