ssh框架中用HibernateDaoSupport的对象查询sql数据库时老是提示:java.lang.NullPointerException错误

2024-12-19 11:54:06
推荐回答(2个)
回答1:

在dwr+ssh中,1.在IoManAction里面写入private IoManService ioManService;之前要确保spring里面写好:



dwr 并调用spring里配好的上面这个,注意:这里的creator=“spring”,因为这是要通过spring来配置的,所以用这种方式,而不是creator="new",看下报null找不到原因,这里看看有没有错。
2.如果上面的没问题,那么请尝试直接从配置文件里面取的方式,这种方式会重新加载一次该application*.xml; ApplicationContext wac = new ClassPathXmlApplicationContext("applicationContext-*.xml");
IoManService ioManService = (IoManService) wac.getBean("ioManService");或者 IoManService ioManService = (IoManService) ApplicationContextHolder.getBean("ioManService");3.再不行,看下事务处理那块是不是保护了

回答2:

groupDao你有没有生成这个方法的get和set
并且配置它的映射文件?