JSP常犯异常
JSP常犯错误
以下错误为个人错误笔记,寻找通用方法的请绕行:
1.Property 'url' not found on type java.lang.String
<c:forEach var="bean1" items="useMenusList"> <li class="topmenu" id="home"> <ul class="topmenu" style="list-style-type:none" > <li><a href="${ctx}${bean1.url}" tabindex="-1">${bean1.displayNameCn}</a></li> <li><a href="${ctx}${bean1.url}" tabindex="-1">${bean1.displayNameEn}</a></li> </ul> </li> </c:forEach>
因为<c:forEach>标签下的items没有加EL表达式的标签“${}”