taskExecutor使用

applicationContext.xml:

   
        
        
        
        
    


@Autowired
 private TaskExecutor taskExecutor;


taskExecutor.execute(new Runnable() {
            public void run() {
                syncUpdateOutIdProcess(upayOrder);
            }
 });

你可能感兴趣的:(JAVA)