问答详情
源自:4-11 阶段案例——实现用户登录

String path = request.getContextPath();有什么用

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

请问这两行代码有什么用?

提问者:tjhjy 2017-04-23 19:50

个回答

  • 故事的小洋葱
    2017-04-23 21:23:17


    getContextPath返回的是相对路径,工程的项目的相对路径(包含文件名)

    getServerPort() 获取服务器端口号

    getServerName 获取你浏览器中显示的主机名

    getScheme() 获取协议名称 默认是http