IntelliJ IDEA“Web.xml错误”检查“无法解析符号”的错误页面> web.xml中的location元素

时间:2014-01-16 14:01:19

标签: java spring-mvc intellij-idea web.xml

我正在使用IntelliJ IDEA 13开发一个spring mvc Web应用程序。 当我在web.xml中定义默认的错误页面位置时,就像这样

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
    <error-page>
        <error-code>404</error-code>
        <location>/error-404</location>
    </error-page>
</web-app>

location属性的值会突出显示,如以下屏幕截图所示:

expanded inspection information

路径/错误404似乎得到了IDEA的认可,因为Spring Tool Window显示了映射:

path is recognized by IDEA

关注IDEA-30229,我认为IDEA应该支持路径作为位置标记的值。

如何阻止此检查弹出(当然不禁用它)?

1 个答案:

答案 0 :(得分:1)

请提交错误报告http://youtrack.jetbrains.com/issues/IDEA并提供您的web.xml和dispatcher-servlet.xml文件。感谢。