package com.zy.asrs.task; 
 | 
  
 | 
import com.zy.asrs.task.core.ReturnT; 
 | 
import com.zy.asrs.task.handler.ErrorStockHandler; 
 | 
import org.slf4j.Logger; 
 | 
import org.slf4j.LoggerFactory; 
 | 
import org.springframework.beans.factory.annotation.Autowired; 
 | 
import org.springframework.scheduling.annotation.Scheduled; 
 | 
import org.springframework.stereotype.Component; 
 | 
  
 | 
/** 
 | 
 * Created by vincent on 2020/7/7 
 | 
 */ 
 | 
@Component 
 | 
public class ErrorStockScheduler { 
 | 
  
 | 
    private static final Logger log = LoggerFactory.getLogger(ErrorStockScheduler.class); 
 | 
  
 | 
    @Autowired 
 | 
    private ErrorStockHandler errorStockHandler; 
 | 
  
 | 
    @Scheduled(cron = "0/3 * * * * ? ") 
 | 
    private void execute(){ 
 | 
        ReturnT<String> returnT = errorStockHandler.start(); 
 | 
        if (!returnT.isSuccess()) { 
 | 
            log.error(returnT.getMsg()); 
 | 
        } 
 | 
    } 
 | 
  
 | 
} 
 |