在jsp的include标签中使用绝对和相对路径
程序员文章站
2022-03-15 12:35:36
...
jsp中的include标签可以使用相对路径和绝对路径,区别在于路径的第一个字符是否为"/",例如:
假设有如下web路径:
webRoot
│
│
├ [jsp]
│ │
│ │
│ ├ [subFolder]
│ │ │
│ │ subFile.jsp
│ │ │
│ │
│ myPage1.jsp
│ mypage2.jsp
│ │
│ │
│
global.jsp
│
│
相对路径
绝对路径
假设有如下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"%>
上一篇: 前后端分离,vue+springboot导出dbf
下一篇: 原生js实现网页中图片放大功能