毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> java技术 >> 正文

Property 'cusgroup' not found on type java.lang.String

更新时间:2016-6-17:  来源:毕业论文

现在从数据库中取到的map数据
{cocs4=6, cocs5=5, countOfCusgroup=256, cusgroup=A1, cocs2=0, cocs3=11, cocs1=234}
{cocs4=3, cocs5=1, countOfCusgroup=93, cusgroup=A2, cocs2=0, cocs3=5, cocs1=84}
{cocs4=4, cocs5=6, countOfCusgroup=262, cusgroup=A3, cocs2=0, cocs3=14, cocs1=238}
{cocs4=1, cocs5=6, countOfCusgroup=191, cusgroup=A4, cocs2=0, cocs3=4, cocs1=180}
{cocs4=8, cocs5=3, countOfCusgroup=156, cusgroup=A5, cocs2=0, cocs3=3, cocs1=142}
....。
每一条数据都是一个map,然后把所有的map添加到一个list中,我现在页面中取值的语句如下:
<c:forEach var="list" items="${listStatistics}">
<c:forEach var="map" items="${list}">
    <tr>
      <td>${map.key.cusgroup}</td>
      <td>${map.key.countOfCusgroup}</td>
      <td>${map.key.cocs1}</td>
      <td>${map.key.cocs2}</td>
      <td>${map.key.cocs3}</td>
      <td>${map.key.cocs4}</td>
      <td>${map.key.cocs5}</td>
    </tr>
    </c:forEach>
    </c:forEach>
 在输出时,页面会报出下面的错误
 root cause

javax.el.PropertyNotFoundException: Property 'cusgroup' not found on type java.lang.String

在myeclipse中也是同样的
严重: Servlet.service() for servlet jsp threw exception
javax.el.PropertyNotFoundException: Property 'cusgroup' not found on type java.lang.String


<c:forEach var="list" items="${listStatistics}">
    <tr>
      <td>${list.cusgroup}</td>
      <td>${list.countOfCusgroup}</td>
      <td>${list..cocs1}</td>
      <td>${list.cocs2}</td>
      <td>${list.cocs3}</td>
      <td>${list.cocs4}</td>
      <td>${list.cocs5}</td>
    </tr>
    </c:forEach>
把Map<String,Object> map = new HashMap<String,Object>();放在循环外边了。这个错我犯过了,现在又来了

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。