JSP 使用<%@include%>报Duplicate local variable path 错误 解决方法 .



JSP 使用<%@include%>报Duplicate local variable path 错误 解决方法 .

错误提示:
Multiple annotations found at this line:
- Duplicate local variable path
- Duplicate local variable
basePath

重复变量,
因为<%@include%>引进的是代码,把代码包含进来,而新进JSP时,会默认生成
<%
String path = request.getContextPath();
String basePath = request.getScheme()+”://”+request.getServerName()+”:”+request.getServerPort()+path+”/”;
%>

<base href=”<%=basePath%>”>
这二句代码,所以用<%@include%>引进页面是就报重复变量 basePath
解决方法,把要引进页面这句去掉就行,

不想删掉,因为要用到“path”这个变量,用来指定CSS路径,怎么办????????????
.搞定了,有2个方法

重命名path和basePath变量,,要不不引用path,直接用request.getContextPath();
分享到:
2012-12-08 08:31 网友采纳
自问自答,好啊。恭喜啊。