上下文路径request.getContextPath();与${pageContext.request.contextPath}

(1) request.getContextPath();与${pageContext.request.contextPath}都是获取上下文路径:

1. request.getContextPath();在普通的java代码中用,当然也可以在jsp中用:<% String contextPath = request.getContextPath(); %>

2. ${pageContext.request.contextPath} jsp中el表达式,在jsp页面中用;

(2) 不同的部署war包名(或者说应用路径名不一样),那么上下文路径不一样:

上下文路径request.getContextPath();与${pageContext.request.contextPath}

上下文路径request.getContextPath();与${pageContext.request.contextPath}

当在webapps中部署war包为:ROOT.war时,这时上下文路径为默认的:空字符串       上下文路径request.getContextPath();与${pageContext.request.contextPath}

当在webapps中部署war包为:platform.war时,这时上下文路径为:/platform  上下文路径request.getContextPath();与${pageContext.request.contextPath}

上一篇:的学习


下一篇:jsp获取绝对路径----${pageContext.request.contextPath}