如何在外部目录中包含web-inf中的页面

时间:2014-02-10 14:17:53

标签: jsp struts2 struts

我想在index.jsp中包含一些页面(header.jsp和footer.jsp)。问题是我不知道如何给他们一个链接。 index.jsp中的代码下面给出了错误;

<s:include value="/web-inf/header.jsp"></s:include>

它给出了;

cannot resolve servlet /web-inf/header.jsp.

我的目录列表(web-inf和index.jsp在同一目录中。);

/web-inf
    /web-inf/header.jsp
    /web-inf/footer.jsp
/index.jsp

1 个答案:

答案 0 :(得分:0)

如果您想要包含web-inf文件夹中的文件,可以试试这个:

<s:include value="../web-inf/header.jsp"/>

../ - 转到index.jspweb-inf的父母。