烦人的“找不到资源”使用 Eclipse Indigo 对我的 web.xml 发出警告

发布于 2024-12-19 18:06:54 字数 513 浏览 2 评论 0 原文

我使用 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 验证。

提前致谢。

I have two custom url mappings for error pages (500 and 404) using PrettyFaces. On my web.xml I have these two error page rules:

<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>

The problem is that Eclipse insists in warn me that the /error and /not-found resources cannot be found in my webapp path.

How can I get rid of these annoying warnings? I don't want to lose the web.xml validation though.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

银河中√捞星星 2024-12-26 18:06:55

当 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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文