当前位置: 代码迷 >> Java Web开发 >> JSP中泛型
  详细解决方案

JSP中泛型

热度:5718   发布时间:2013-02-25 21:20:29.0
JSP中泛型求助
在JSP页面中有一行用到泛型Collection cl =bookdb.searchBook(strKeyword);总是报错Collection is a raw type. References to generic type Collection <E> should be parameterized
网上有说在类或方法前加@SuppressWarnings("unchecked"),可是是在JSP中,没有类没有方法啊,怎么办啊

------解决方案--------------------------------------------------------
使用Collection 的实现子类,比如List的ArrayList等之类的
------解决方案--------------------------------------------------------
http://topic.csdn.net/u/20071022/10/0b55f373-e274-464a-b74d-e5dd29da2cc3
  相关解决方案