欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在jsp的include标签中使用绝对和相对路径

程序员文章站 2022-03-15 12:35:36
...
jsp中的include标签可以使用相对路径和绝对路径,区别在于路径的第一个字符是否为"/",例如:

假设有如下web路径:
webRoot


├ [jsp]
│ │
│ │
│ ├ [subFolder]
│ │ │
│ │ subFile.jsp
│ │ │
│ │
│ myPage1.jsp
│ mypage2.jsp
│ │
│ │

global.jsp




相对路径

<!-- I am myPage1.jsp -->
<%@include file="subFolder/subFile.jsp"%>
<%@include file="./myPage2.jsp"%>
<%@include file="../global.jsp"%>


绝对路径

<!-- I am myPage1.jsp -->
<%@include file="/global.jsp"%>
<%@include file="/jsp/myPage1.jsp"%>
<%@include file="/jsp/subFolder/subFile.jsp"%>
相关标签: jsp include