首页 > 代码库 > jsp的basePath应用

jsp的basePath应用

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><%    String path = request.getContextPath();    // 获得项目完全路径(假设你的项目叫MyApp,那么获得到的地址就是 http://localhost:8080/MyApp/):        String basePath = request.getScheme() + "://"            + request.getServerName() + ":" + request.getServerPort()            + path + "/";%>

然后在head中添加base

<head><base href="<%=basePath%>"/>
</head>

之后,例如加载jquery.js

<script type="text/javascript" src="http://www.mamicode.com/js/jquery-2.2.4.js"></script>

不用写绝对路劲了

jsp的basePath应用