….\windows\system32\cmd.exe
拿着这理解应该比程序里面好理解得多了。
${pageContext.request.contextPath}
等价于<%=request.getContextPath()%>
或者可以说是<%=request.getContextPath()%>
比如我的项目名称是SpringMVC 在浏览器中输入为http://localhost:8080/SpringMVC/login.jsp
${pageContext.request.contextPath}
或<%=request.getContextPath()%>
取出来的就是/SpringMVC,而”/”代表的含义就是http://localhost:8080
所以我们项目中应该这样写${pageContext.request.contextPath}/login.jsp