クォーツとスプリングを使用しています。私のメインクラスでは、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));
ただし、nullポインタ例外が発生します。何か案は?