<%List<FoodBean> foodBeans = (List<FoodBean>)request.getAttribute("food"); %>
报错:
Type safety: Unchecked cast from Object to List<FoodBean>
------解决方案--------------------
request.getAttribute("food",Object);的时候,那个Object是List不?
不是List就会报错。
貌似还要去掉泛型。忘了。。
------解决方案--------------------
cast from Object to List<FoodBean> 类型转换问题,你返回的值不是一个list
------解决方案--------------------
。。。楼上正解,楼主你敢在jsp中不写脚本代码吗?