标签:foreach bean propertynotfoundexce
用了好久的forEach标签,今天帮同事调试程序看到以下异常,第一感觉应该是javabean里面的属性和页面的属性不一致导致,反复检查,确认属性没任何问题,没办法,实在看不出来,只好自己写一个forEach,同一个list,同一个属性,没报任何异常,然后比较发现,报错程序里items="${getTestModule}"在$符号前加了个空格,问题就这么解决了,顿时无语中。。。
[show] javax.el.PropertyNotFoundException: ‘newsLine‘ is an unknown bean property
of ‘java.lang.String‘
<c:forEach items="${getTestModule}" var="list" varStatus="rowCounter" begin='0' step='1' end='10'> <li style="color: blue;"><a href="#" target="_blank">${list.newsLine}</a></li> </c:forEach>
<c:forEach items=" ${getTestModule}" var="list" varStatus="rowCounter" begin='0' step='1' end='10'> <li style="color: blue;"><a href="#" target="_blank">${list.newsLine}</a></li> </c:forEach>
版权声明:本文为博主原创文章,未经博主允许不得转载。
javax.el.PropertyNotFoundException: 'newsLine' is an unknown bean property...
标签:foreach bean propertynotfoundexce
原文地址:http://blog.csdn.net/jeofey/article/details/47336193