美文网首页
web项目如何拼凑项目资源路径

web项目如何拼凑项目资源路径

作者: 香蕉是世界上最好吃的水果 | 来源:发表于2019-02-13 20:21 被阅读0次

在jsp中写了如下代码:


<%

    String path1=request.getScheme();

    String path2=request.getServerName();

    int path3=request.getServerPort();

    String path4=request.getContextPath();

    System.out.println(path1);

    System.out.println(path2);

    System.out.println(path3);

    System.out.println(path4);

    System.out.println("----------");

%>

控制台输出如下:


http

localhost

8080

/pro_1000_war_exploded

----------

即在项目中可使用如下拼凑的链接


String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+request.getContextPath()+"/";

相关文章

网友评论

      本文标题:web项目如何拼凑项目资源路径

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