JSP 里 的 basePath

Eclipse新建JSP页面的时候不会加上 base 这个变量,需要手动添加,经常忘记,MyEclipse 就不用管了会自动添加。

如果忘了下面代码直接copy即可:

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

 然后再 head 标签后面加上:

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

 

posted @ 2017-03-27 18:23  流年如水烟雨随风  阅读(265)  评论(0编辑  收藏  举报