在myeclipse IDE中有自动添加basePath的jsp文件; 而在eclipse中需要修改设置IDE,修改Eclipse中Web项目的jsp文件表头,使其自动加上basePath
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
使用以上代码原因:
以上语句用来拼装当前网页的相对路径.
页面内有一个连接,完整的路径应该是 http://localhost:8080/demo/bbs/css/babasport.css
其中:
http://localhost:8080是服务器的基本路径
demo是当前应用程序的名字
根路径是http://localhost:8080/demo/
因此. 我们设置basePath,使其代表http://localhost:8080/demo/
以后http://localhost:8080/demo/bbs/css/babasport.css等价于<%=basePath%>bbs/css/babasport.css (服务器会自动把 <base …>指定的路径和页面内的相对路径拼装起来,组成完整路径。)
request.getSchema()可以返回当前页面使用的协议,http
request.getServerName()可以返回当前页面所在的服务器的名字,localhost
request.getServerPort()可以返回当前页面所在的服务器使用的端口,8080
request.getContextPath()可以返回当前页面所在的应用的名字,demo
四个拼装起来,就是当前应用的根路径了
即: String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
Eclipse如何一次性加上basePath
- 步骤一:在菜单栏上面找到window–>Prefrences
- 步骤二:按照下述步骤添加(注意点右侧的Edit,才可以进行编辑、修改代码)
所需增加代码如下:
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
最后点击Apply即可,下次再打开新的jsp文件时上面就自动有这句话了。
以上部分借鉴博客:
如何修改Eclipse中Web项目的jsp文件表头,自动加上basePath
https://blog.csdn.net/weixin_41996974/article/details/80717426