ajax异步查询返回list集合。下面是代码     String queryString="from AttackEvent t  where t.centerId=3";
   Query query=session.createQuery(queryString);
   List<AttackEvent> list= query.list();
执行到query.list()的时候就没反映了。具体表现为,后台不报错,但是也不会继续往下执行,用getHiberante...也是一样的,这是怎么回事?