我尝试在我的春季-波波特申请中开展一项预定任务,使用默认<代码>> 申请表Config——我只添加了通知编号@EnableSstaling<>/code>,并根据以下代码样本将这一类别与将要安排的方法混为一谈:
@Component
public class Task {
@Scheduled(cron ="*/10 * * * * *")
public void init() {
System.out.println("QuartzConfig initialized.");
System.out.println(callService());
}
private String callService() {
String urlService = "https://www.google.com";
GetMethod method = new GetMethod(urlService );
String response = "";
try {
client.executeMethod(method);
response = method.getResponseBodyAsString();
} catch (IOException e) {
e.printStackTrace();
} finally {
method.releaseConnection();
}
return response;
}
}
然而,当任务被指定时,该方法<代码>--------------------------------------------------
java.lang.NullPointerException: null
这显然使我感到悲痛。