浏览 5068 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2007-07-09
ListGoods 为Map型 public String justFindGoodsItem() throws Exception{ List item1=goodsItemDao.justFindGoodsItem(); itemGoods.put("goodsItem",item1); return SUCCESS; } 从hibernate取出数据 public List justFindGoodsItem(){ List goodsitem=hibernateTemplate.find("from Goodsitem"); if(!goodsitem.isEmpty()){ return goodsitem; } return null; } 在页面上先调用此action 然后<ww:select name="department" list="itemGoods"/> 出现错误如下: org.apache.catalina.core.ApplicationContext log 信息: tag 'select', field 'list', name 'department': The requested list key 'itemGoods' could not be resolved as a collection/array/map/enumeration/iterator type. Example: people or people.{name} 恳请大家指点 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-07-10
<ww:select name="department" list="item1"/>
试试 |
|
返回顶楼 | |
发表时间:2007-07-10
还是不行,报的错是一样的
|
|
返回顶楼 | |
发表时间:2007-07-13
itemGoods怎么定义的啊?有getter,setter方法吗?
|
|
返回顶楼 | |
发表时间:2007-07-14
谢谢,已经ok了,
原来select 标签中的list属性对应的自己的list,而listKey及listValue要对应自己例如item类里的属性:在这里是goodsItemid及goodsItemname <ww:select name="goods.goodsItem" headerKey="-1" headerValue="请选择栏目" list="item1" listKey="goodsItemid" listValue="goodsItemname" required="true" /> |
|
返回顶楼 | |