Glassfish服务器welcome-file无法正常工作?

时间:2014-11-03 15:15:06

标签: java jsp glassfish welcome-file

我有一个非常简单的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">
    <welcome-file-list>
        <welcome-file>abcd.jsp</welcome-file>
    </welcome-file-list>
    <context-param>
        <param-name>foo</param-name>
        <param-value>bar</param-value>
    </context-param>
</web-app>

我的应用程序中有2个jsp文件hello.jsp和abcd.jsp。

我将war文件部署到Glassfish服务器,上下文根是“novone”

当我去localhost时:8080 / novone我看到hello.jsp,而不是abcd.jsp ......

在Glassfish管理面板(local4848 / common / index.jsf)应用程序 - &gt; novone-&gt; Descriptor-&gt;描述 - 文件我看到:

<?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">
    <welcome-file-list>
        <welcome-file>abcd.jsp</welcome-file>
    </welcome-file-list>
    <context-param>
        <param-name>foo</param-name>
        <param-value>bar</param-value>
    </context-param>
</web-app> 

为什么要提供hello.jsp而不是abcd.jsp?

当我手动转到/novone/abcd.jsp时,我可以看到从应用程序范围加载的值“bar”。

2 个答案:

答案 0 :(得分:1)

这并不是很明显,但我发现如果你使用IntelliJ autogen war文件,如果你进入Project Structure&gt; Facets,您将在Web下看到右上方框中有一个Web模块部署描述符,右下方框中有一个Web资源目录。

如果您在底部框架中突出显示该Web资源目录,您将看到Web资源目录可能默认设置为/ web作为根目录。

您可以点击编辑图标并将其更新为/然后您的欢迎文件应该有效,因为它将在您的网络资源中被考虑。

答案 1 :(得分:0)

您的GlassFish设置似乎没有错。您清除浏览器缓存并重试或尝试使用其他浏览器。