我想在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
答案 0 :(得分:0)
如果您想要包含web-inf
文件夹中的文件,可以试试这个:
<s:include value="../web-inf/header.jsp"/>
../
- 转到index.jsp
和web-inf
的父母。