我的问题是,我已经使用代码
包含了一个页面 <%@include file="../include/dbconnection.jsp"%>
我的页面位于public_html的子目录中,但是当我加载页面时,它显示以下异常
org.apache.jasper.JasperException: /index.jsp(23,1) File "/../include/dbconnection.jsp" not found
但是这个代码在我的开发系统(这是windows)中工作正常我使用linux服务器作为我的网站。这是文件分隔符或文件权限问题吗?可能是什么问题?
答案 0 :(得分:0)
您可以在下面使用<jsp:include page="...">
的帖子中找到您的答案,<%@include
仅适用于静态参考。
Is it possible to have a dynamic path as part of a jsp include