• request.getContextPath()


    今天终于明白了jsp中的request.getContextPath()是怎么回事了。

    request.getContextPath()  返回站点的根目录

    request.getRealpath("/")得到的是实际的物理路径,也就是你的项目所在服务器中的路径

    request.getScheme() 等到的是协议名称,默认是http

    request.getServerName() 得到的是在服务器的配置文件中配置的服务器名称 比如:localhost .baidu.com 等等

    request.getServerPort() 得到的是服务器的配置文件中配置的端口号 比如 8080等等

    有一个例子来说明吧

    有个web应用程序 名称就是demo

     <%
        String basePath = request.getScheme() + "://"
                + request.getServerName() + ":" + request.getServerPort();
        String path = request.getScheme() + "://" + request.getServerName()
                + ":" + request.getServerPort() + request.getContextPath()
                + "/";
        String filePath=path+"resources/";
        session.setAttribute("path", path);
        session.setAttribute("basePath", basePath);
        session.setAttribute("filePath", filePath);
    %>

    以上这段代码是 demo中每一个jsp页面中都包含的一段代码

    其中 request.getContextPath() = /demo

    basePath = http://localhost:8080

    path = http://localhost:8080/demo/

    filePath = http://localhost:8080/demo/resources/

    用法:

    如果在jsp界面中引用resources/images/文件夹下面的图片icon.png写法如下:

    <img src="${filePath }images/icon.png" />或者

     <img src="${path}resources/images/icon.png" />

    同理 如果在resources/css/文件夹下引用style.css写法如下:

    <link href="${filePath} css/style.css" rel="stylesheet" type="text/css" />

    <link href="${path} resources/css/style.css" rel="stylesheet" type="text/css" />

    OK! 

    参考文章:http://www.cnblogs.com/yqskj/articles/2226401.html

    如果喜欢作者的文章,请关注"写代码的猿"订阅号以便第一时间获得最新内容。本文版权归作者所有,欢迎转载. 

  • 相关阅读:
    常见HTTP状态码(200、301、302、500等)解说
    HTTP协议详解(真的很经典)
    计算机网络基础知识总结
    js调试中打印语句
    关于函数return的一些理解与小实例
    网站的导航菜单 远择一个栏目跳转后,为导航菜单的这个栏目增加选中的样式的思路
    alias记录
    利用vue-cli配合vue-router搭建一个完整的spa流程
    node+vue-cli+webpack搭建教程
    nodejs参考文章
  • 原文地址:https://www.cnblogs.com/yuan1225/p/3219629.html
Copyright © 2020-2023  润新知