美文网首页
URI、URL、URN的关系

URI、URL、URN的关系

作者: 上杉丶零 | 来源:发表于2020-06-06 14:49 被阅读0次
    • URI:Uniform Resource Identifier,统一资源标识符,例如request.getRequestURI()【/fas/user/registerVue】
    • URL:Uniform Resource Locator,统一资源定位符,例如request.getRequestURL()【http://localhost:8888/fas/user/registerVue】
    • URN:Uniform Resource Name,统一资源名

    关系
    request.getRequestURL() = ip:port + (request.getRequestURI() = request.getContextPath() + request.getServletPath())
    如:
    request.getRequestURI() = /fas/user/registerVue
    request.getRequestURL() = http://localhost:8888/fas/user/registerVue
    request.getContextPath() = /fas
    request.getServletPath() = /user/registerVue

    相关文章

      网友评论

          本文标题:URI、URL、URN的关系

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