jsp文件绝对路径的设置

	<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
            + request.getServerName() + ":" + request.getServerPort()
            + path + "/";//返回形式http://localhost:8080/upload/
%>

调用:

<%=basePath%>
在js代码里也可以直接用

你可能感兴趣的:(绝对路径)