basePath can not be resolved

原创
2014/07/02 23:22
阅读数 198

今天做jsp时,在:

<base href="<%=basePath%>">//这一行本来是IDE自动生成的

报:basePath can not be resolved

百度到的答案:

把这段话添加到你的jsp页面头部
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

结果发现,我出这个错误是因为把上面两句话的小脚本开始标记<%误删导致的,把标记补回去就完美解决了!





展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
返回顶部
顶部