首页 > 代码库 > request.getContextPath();与${pageContext.request.contextPath}

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包名(或者说应用路径名不一样),那么上下文路径不一样:

 技术分享

技术分享

 

当在webapps中部署war包为:ROOT.war时,这时上下文路径为默认的:空字符串       技术分享

 

当在webapps中部署war包为:platform.war时,这时上下文路径为:/platform  技术分享

 

request.getContextPath();与${pageContext.request.contextPath}