JSP中如何正确的填写include指令中的file路径呢?
下文讲述include指令中file填写注意事项,如下所示:
根目录-根目录的链接方式
在 index.jsp中显示index_sub.jsp中的内容:<%@inclue file="/index_sub.jsp" /> //‘ / ’表示是根目录,这个其他语言也是一样的
根目录-子文件夹
在index.jsp中显示test文件夹中的b.jsp内容<%@inclue file="/test/b.jsp" /> //根目录下的test文件夹里的b.jsp
子文件夹-子文件夹
在main.jsp中导入head.jsp<%@inclue file="/test/b.jsp"/> 或 <%@inclue file="b.jsp" />
子文件夹-根目录
在main.jsp中导入根目录下的index.jsp文件<%@inclue file="/index.jsp" />
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。