烦人的“找不到资源”使用 Eclipse Indigo 对我的 web.xml 发出警告
我使用 PrettyFaces 为错误页面(500 和 404)有两个自定义 url 映射。在我的 web.xml 上,我有这两个错误页面规则:
<error-page>
<error-code>404</error-code>
<location>/not-found</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error</location>
</error-page>
问题是 Eclipse 坚持警告我无法在中找到 /error
和 /not-found
资源我的网络应用程序路径。
我怎样才能摆脱这些烦人的警告?但我不想失去 web.xml 验证。
提前致谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 web.xml 中的任何文件具有无效映射时,就会发生这种情况。我猜您可能正在使用 JBoss Tools?如果是这样,请进入 Eclipse Preferences,在过滤器中输入 Validation,找到 JBoss Tools 验证,然后关闭 web.xml 验证。那应该可以解决问题。
首选项-> JBoss 工具 ->网页->验证-> (然后禁用所有您不需要的规则。)
This happens when you have any file in web.xml that has an invalid mapping. I'm guessing you are probably using JBoss Tools? If so, if you go into the Eclipse Preferences, type Validation into the filter, find the JBoss Tools validations, and turn off the web.xml validations. That should do the trick.
Preferences -> JBoss Tools -> Web -> Vefication -> (then disable all the rules you don't want.)