我想在我的数据库中插入一些数据。但我抓住
"ERROR: org.springframework.scheduling.support.TaskUtils$LoggingErrorHandler - Unexpected error occurred in scheduled task.
java.lang.NullPointerException"
我不知道该怎么办。
public class HeadHunterImport {
@Autowired
private static HeadHunterService headHunterService;
@Scheduled(fixedRate = 600000)
public void AsyncRemovalOldData() {
headHunterService.addHeadHunter("Moscow", 100, 100) ;
}
如果我在控制器中调用它,它将正常工作。怎么了?