美文网首页
JSP获取绝对路径:${pageContext.request.

JSP获取绝对路径:${pageContext.request.

作者: zheng7 | 来源:发表于2017-08-16 08:36 被阅读0次

    ${pageContext.request.contextPath}是JSP取得绝对路径的方法,等价于<%=request.getContextPath()%> 。也就是取出部署的应用程序名或者是当前的项目名称。
    比如我的项目名称是demo1在浏览器中输入为http://localhost:8080/demo1/a.jsp ${pageContext.request.contextPath}<%=request.getContextPath()%>取出来的就是/demo1,而"/"代表的含义就是 http://localhost:8080 故有时候项目中这样写 ${pageContext.request.contextPath}/a.jsp

    相关文章

      网友评论

          本文标题:JSP获取绝对路径:${pageContext.request.

          本文链接:https://www.haomeiwen.com/subject/vkibrxtx.html