在jsp页面获取项目的根路径

<%
String basePath = request.getScheme()+"://"+request.getServerName()+":"+
request.getServerPort()+request.getContextPath()+"/";
%>
<%=basePath %>

项目根路径为:http://localhost:8080/ssmDemo/
其中“ssmDemo”是项目名称。

你可能感兴趣的:(jsp)