0

我正在使用石英和弹簧。在我的主类中,我使用 XML 文件来获取休眠属性,如下所示:

String conf[] = {"Config.xml"};
        ClassPathXmlApplicationContext applicationContext= new ClassPathXmlApplicationContext(conf);
        TestProgram unittest=applicationContext.getBean(TestProgram.class);     
        unittest.testMethod(unittest);

在我的工作课程中,我尝试从数据库中检索数据,如下所示:

 List<UserMasterVO> userMasterVO=userMasterService.findAll();
 System.out.println("userMasterVO..."+userMasterVO);
 for(int index=0;index<userMasterVO.size();index++)
     System.out.println(userMasterVO.get(index));

但它会导致空指针异常。有任何想法吗?

4

1 回答 1

0

我已经在 stackoverflow 上回答了您的其他问题,这也将解决您的这个问题。 使用石英的数据检索

于 2012-10-03T19:00:14.377 回答