jsp页面自动生成的basePath脚本,端口号后面为什么少一个"/"?
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
request.getServerPort()后面为什么不加"/"? myeclipse自动生成的jsp界面都不加,网上的好像也都不加。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
打印下path 就知道了
可以看下源码方法的说明文档。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.