码迷,mamicode.com
首页 > 编程语言 > 详细

javax.el.PropertyNotFoundException: 'newsLine' is an unknown bean property...

时间:2015-08-07 13:26:57      阅读:164      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!