我们如何在 include 中添加 scriplet?
例如:
<@include file="../../../sample/Includes/util.jsp">
现在我想在此添加上下文路径:
request.getContextPath()
<@include file="request.getContextPath()/sample/Includes/util.jsp">
但我遇到了一些错误。
我们如何在 include 中添加 scriplet?
例如:
<@include file="../../../sample/Includes/util.jsp">
现在我想在此添加上下文路径:
request.getContextPath()
<@include file="request.getContextPath()/sample/Includes/util.jsp">
但我遇到了一些错误。
静态包含总是相对的。
包含文件的路径名,始终是相对 URL。简单地说,相对 URL 只是 URL 的路径段,没有协议、端口或域名,如下所示:
包含是上下文相关的,所以你应该只在一个正斜杠前面加上它。