标签:错误 not 表达式 var for 问题解决 空格 type bsp
一般出现上述问题:存在两种情况
1、你的程序的属性没有提供getter方法
2、在<c:forEach var="list" items="${requestScope.list}" varStatus="vs">这里你没有采取EL表达式
但是我却犯了一个很弱智的错误 在这里items="${requestScope.list}"我写成了 items=" ${requestScope.list}",多了一个空格,一直出现上述错误
Property 'id' not found on type java.lang.String问题解决
标签:错误 not 表达式 var for 问题解决 空格 type bsp
原文地址:http://www.cnblogs.com/liguo-ji/p/6061421.html