首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Eclipse开发 >

紧急 A web application created a ThreadLocal with key of type [null] (value [com

2012-08-24 
严重: A web application created a ThreadLocal with key of type [null] (value [com.这是出错部分代码:

严重: A web application created a ThreadLocal with key of type [null] (value [com.
这是出错部分代码:Service.Impl
@Override
public CardItem getCardItemById(int id) {
List<CardItem> list = cardItemDao.getCardItemById(id);
if (list != null){
System.out.println("查询记录数为:" + list.size() ) ;
}else{
System.out.println("查询结果为 null") ;
}
Iterator<CardItem> iter= list.iterator();
CardItem cardItem = null;
if(iter.hasNext()){
cardItem = iter.next();
}
System.out.println(cardItem);
return cardItem;
}
打印出来的结果是

查询记录数为:0
null

好几天啊,明白的帮忙看下吧

[解决办法]
这代码完全不能说明问题啊

热点排行