jsp页面自动生成的basePath脚本,端口号后面为什么少一个"/"?

发布于 2022-09-01 22:33:21 字数 260 浏览 15 评论 0

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

request.getServerPort()后面为什么不加"/"? myeclipse自动生成的jsp界面都不加,网上的好像也都不加。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ヅ她的身影、若隐若现 2022-09-08 22:33:21

打印下path 就知道了

月亮邮递员 2022-09-08 22:33:21

可以看下源码方法的说明文档。request.getContextPath()获取的是项目的上下文路径,是一个相对路径。是"/"开头的

  • Returns the portion of the request URI that indicates the context

    • of the request. The context path always comes first in a request

    • URI. The path starts with a "/" character but does not end with a "/"

    • character. For servlets in the default (root) context, this method

    • returns "". The container does not decode this string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文