如何避免CHKJ3010W:欢迎文件无法以/开头或结尾

时间:2012-12-07 07:42:21

标签: java jsp java-ee web-applications servlets

我的欢迎文件列表如下所示:

<welcome-file-list>
    <welcome-file>/WEB-INF/jsp/index.jsp</welcome-file>
</welcome-file-list>

这在Eclipse中引发了以下警告:

CHKJ3010W: Welcome Files cannot begin or end with a /.  in web.xml  

如果我们删除WEB-INF前面的/,则在JBoss中没有正确提供页面。如果我们添加/我们正在获得上述警告。

如何避免此警告?

1 个答案:

答案 0 :(得分:2)

您应指定可公开访问的文件。看http://wiki.metawerx.net/wiki/Web.xml.WelcomeFileList

创建公开index.jsp,其中包含/WEB-INF/jsp/index.jsp

中的数据