JSP 里 的 basePath

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

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

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

然后再 head 标签后面加上:

<base href="<%=basePath %>"/>
上一篇:RunLoop 总结:RunLoop的应用场景(一)


下一篇:JQuery EasyUI DataGrid获取当前行或选中行