首先,在jsp页面引入C标签。
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
然后,在jsp页面引入java代码。
<%最后,用C标签绑定“basePath ”
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<c:set var="cp" value="<%=basePath%>" />
在页面中用'${cp}'就可以取到项目的访问路径。
注意:将${cp}用引号括起来。