在JSP 中使用了<%@include file=""%>,会报一个Duplicate local variable path。
有的电脑在JSP 中使用了<%@include file=""%>,会报一个Duplicate local variable path。
只是因为两个文件出现相同的路径。
如果你有一个路径是正确的,就不用另一个了吧,报的重复的局部变量路径。
我的两个jsp文件中都出现
1.<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
2.<base href="<%=basePath%>">
此时,你可以把待插入的jsp文件中的上述两行代码删掉,就解决问题了。