我正在尝试在计划的函数中初始化 HttpServletRequest 并根据 cron 作业执行操作。但该功能在初始化请求后停止。我现在该怎么办 ?我正在研究spring mvc。这是我的代码:
@Scheduled(cron = "0 0 1 * * ?")
@Async
public void PerformActionFunction() throws NoSuchAlgorithmException, ParseException {
System.out.println("hello 1");
HttpServletRequest request = ((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).getRequest();
System.out.println("hello 2");
ModelMap model = new ModelMap();
FunctionForDate(request,model);
}
输出打印 hello 1 但不打印 hello 2 。该函数在初始化 HttpServletRequest 后停止。我现在该怎么办 。