jsp中的${pageContext.request.contextPath}
Posted 西西嘛呦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp中的${pageContext.request.contextPath}相关的知识,希望对你有一定的参考价值。
${pageContext.request.contextPath}是JSP取得绝对路径的方法,等价于<%=request.getContextPath()%> ,也就是取出部署的应用程序名或者是当前的项目名称。
- 比如项目名称是springmvc3,在浏览器中输入为http://localhost:8080/springmvc3/emp。
- ${pageContext.request.contextPath}或<%=request.getContextPath()%>取出来的就是/springmvc3,而"/"代表的含义就是http://localhost:8080。
- 故有时候项目中这样写${pageContext.request.contextPath}/emp。
- emp指的是映射到@RequestMapping中的value的值。
以上是关于jsp中的${pageContext.request.contextPath}的主要内容,如果未能解决你的问题,请参考以下文章
jsp 的三种语法-头部的 page 指令-.jsp 中的常用脚本-jsp 中的三种注释- 四大域对象pageContext equestsessionapplicatio