当前位置: 代码迷 >> J2EE >> 快来看 一个新的有关问题出来了
  详细解决方案

快来看 一个新的有关问题出来了

热度:76   发布时间:2016-04-22 02:23:05.0
快来看 一个新的问题出来了
<%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中不写脚本代码吗?
  相关解决方案