+ -
当前位置:首页 → 问答吧 → JSP include问题

JSP include问题

时间:2011-10-16

来源:互联网

我想请教一个include file的问题。

目录结构
-abc
  -index.jsp
-include
  -head.jsp

index.jsp页面:<%@include file="../include/head.jsp" %>
想引用上级目录下一个文件夹里的文件。
但是报错500:org.apache.jasper.JasperException: /index.jsp (line: 19, column: 1) File "/../include/head.jsp" not found
好像跳不出当前目录

作者: zity_chow   发布时间: 2011-10-16

<%@include file="/include/head.jsp" %>

作者: zhongxingxuan   发布时间: 2011-10-16

引用 1 楼 zhongxingxuan 的回复:

<%@include file="/include/head.jsp" %>

也不行。
../include/head.jsp这个地址用iframe是可以的。

是不是我的Tomcat设置错误了

作者: zity_chow   发布时间: 2011-10-16