当前位置 : 主页 > 编程语言 > java >

在SSH框架中,使用Spring设置定时器Quartz来开启定时任务

来源:互联网 收集:自由互联 发布时间:2021-06-28
applicationContext-quartz.xml QuartzJob.java package com.naton.quartz;import javax.annotation.Resource;import com.naton.service.AgtOrderRTMidService;import com.naton.service.AgtSentService;import com.naton.service.AgtStockInDetailService;im
applicationContext-quartz.xml
 

 

	
  

	
   
    
    
  

	
   
    
    
   

	
   
    
     
      
     
    
    
     
      
     
    
  
 


 
QuartzJob.java
package com.naton.quartz;

import javax.annotation.Resource;

import com.naton.service.AgtOrderRTMidService;
import com.naton.service.AgtSentService;
import com.naton.service.AgtStockInDetailService;
import com.naton.service.mid.AgtMidFillUpInventoryHeadService;
import com.naton.service.mid.SyncMidServer;

public class QuartzJob {
	
	@Resource(name="agtSentServiceImpl")
	private AgtSentService agtSentService;
	
	@Resource(name="agtStockInDetailServiceImpl")
	private AgtStockInDetailService agtStockInDetailService;
	
	@Resource(name="agtMidFillUpInventoryHeadServiceImpl")
	private AgtMidFillUpInventoryHeadService agtMidFillUpInventoryHeadService;
	
	@Resource(name="syncMidServerImpl")
	private SyncMidServer syncMidServer;
	
	@Resource(name="agtOrderRTMidServiceImpl")
	private AgtOrderRTMidService agtOrderRTMidService;
	
	public void agtsent(){
		
//		System.out.println("+++++定时任务开始++++++");
		// 批量生成供应商发货表头和明细
//		agtSentService.saveAgtSentBat();
//		
		//临调生成供应商发货表头和明细明细
//		agtSentService.nt107saveAgtSent();
//		
		// 同步库存调整单
//		agtMidFillUpInventoryHeadService.synchrodataToMid() ;
//		
		//同步对外平台数据库(收货入库)
//		agtStockInDetailService.synAgtStockIn();
//		
		//同步对外平台数据库(申报表)
//		syncMidServer.syncReportData();
		
		//同步对外平台数据库(采购退货)
		//agtOrderRTMidService.orderrtToMid();
		
//		System.out.println("--lalala定时任务结束lalala--");
		
		
	}

}
上一篇:java新特征
下一篇:选择框
网友评论