dwr 直接调用dao的问题 要崩溃了 帮忙啊

therehere 2009-04-06 04:28:38
[下面是我要调用的java的代码 返回一个map,在main函数里进行测试没有问题
hibernate数据库环境也没有任何问题
package goodsService;

import goods.GoodsCategory;

import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import org.hibernate.Session;

import util.HibernateSessionFactory;

public class GoodsDwr {

// 获取目录的option
public Map getCategoryNames() {

Map map = new HashMap();

Session session = HibernateSessionFactory.getSession();

List list = session.createQuery("from GoodsCategory").list();
for (Iterator it = list.iterator(); it.hasNext();) {
GoodsCategory gc = (GoodsCategory) it.next();
map.put(gc.getId(), gc.getName());
}

map.put(2, 2);
return map;

}

public static void main(String[] args) {
GoodsDwr dw = new GoodsDwr();
System.out.println(dw.getCategoryNames().size());
}
}

下面是dwr的配置
<create javascript="goodsDwr" creator="new">
<param name="class" value="goodsService.GoodsDwr"></param>
</create>
只是针对这个函数的,dwr环境在其他例子下通过,环境没有任何问题

现在我在debug环境下测试getCategoryNames()函数 总是弹出error的提示框
而我将 加粗的语句 去除之后 就是正确的结果了
Session session = HibernateSessionFactory.getSession();
List list = session.createQuery("from GoodsCategory").list();
for (Iterator it = list.iterator(); it.hasNext();) {
GoodsCategory gc = (GoodsCategory) it.next();
map.put(gc.getId(), gc.getName());
}

去除上面的话 ,可是我以前也做个同样的程序,那个时候完全没有问题啊
大家有什么经验吗 我调了老半天了,帮忙救救我啊


...全文
89 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
swprogrammer 2009-04-06
  • 打赏
  • 举报
回复
学习
susoft2008 2009-04-06
  • 打赏
  • 举报
回复
没白发 大家学习学习。。。
susoft2008 2009-04-06
  • 打赏
  • 举报
回复
没白发 大家学习学习。。。
susoft2008 2009-04-06
  • 打赏
  • 举报
回复
没白发 大家学习学习。。。
jourqel 2009-04-06
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 therehere 的回复:]
搞定了 换了个dwr2.0的架包就没事情了
白发了
[/Quote]
.......
zidasine 2009-04-06
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 therehere 的回复:]
搞定了 换了个dwr2.0的架包就没事情了
白发了
[/Quote]
....
therehere 2009-04-06
  • 打赏
  • 举报
回复
搞定了 换了个dwr2.0的架包就没事情了
白发了
despotic 2009-04-06
  • 打赏
  • 举报
回复
你测试的时候session打开了吗?

81,111

社区成员

发帖
与我相关
我的任务
社区描述
Java Web 开发
社区管理员
  • Web 开发社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧