<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!-- http://localhost:8080/logistics/ -->
<!DOCTYPE HTML>
<html>
<head>
<!-- 设置页面的 基本路径,页面所有资源引入和页面的跳转全部基于 base路径 -->
<base href="<%=basePath%>">
<meta charset="UTF-8">
在JSP头部加上以上内容
这样导入其他前端内容就不用修改大量地址内容