quartz定时任务时间设置

574 篇文章 4 订阅
272 篇文章 1 订阅
这些星号由左到右按顺序代表 :     *    *     *     *    *     *   *     
                              格式: [] [] [小时] [] [] [] [] 
序号 说明 
  是否必填  允许填写的值 允许的通配符 
1  秒  是  0-59    , - * / 
2  分  是  0-59 
   , - * / 
3 小时  是  0-23   , - * / 
4  日  是  1-31   , - * ? / L W 
5  月  是  1-12 or JAN-DEC   , - * / 
6  周  是  1-7 or SUN-SAT   , - * ? / L # 
7  年  否  empty 或 1970-2099  , - * / 
通配符说明: 
* 表示所有值. 例如:在分的字段上设置 "*",表示每一分钟都会触发。 
? 表示不指定值。使用的场景为不需要关心当前设置这个字段的值。例如:要在每月的10号触发一个操作,但不关心是周几,所以需要周位置的那个字段设置为"?" 具体设置为 0 0 0 10 * ? 
- 表示区间。例如 在小时上设置 "10-12",表示 10,11,12点都会触发。 
, 表示指定多个值,例如在周字段上设置 "MON,WED,FRI" 表示周一,周三和周五触发 
/ 用于递增触发。如在秒上面设置"5/15" 表示从5秒开始,每增15秒触发(5,20,35,50)。在月字段上设置'1/3'所示每月1号开始,每隔三天触发一次。 
L 表示最后的意思。在日字段设置上,表示当月的最后一天(依据当前月份,如果是二月还会依据是否是润年[leap]), 在周字段上表示星期六,相当于"7""SAT"。如果在"L"前加上数字,则表示该数据的最后一个。例如在周字段上设置"6L"这样的格式,则表示“本月最后一个星期五" 
W 表示离指定日期的最近那个工作日(周一至周五). 例如在日字段上设置"15W",表示离每月15号最近的那个工作日触发。如果15号正好是周六,则找最近的周五(14)触发, 如果15号是周未,则找最近的下周一(16)触发.如果15号正好在工作日(周一至周五),则就在该天触发。如果指定格式为 "1W",它则表示每月1号往后最近的工作日触发。如果1号正是周六,则将在3号下周一触发。(注,"W"前只能设置具体的数字,不允许区间"-"). 
小提示 
'L''W'可以一组合使用。如果在日字段上设置"LW",则表示在本月的最后一个工作日触发(一般指发工资 ) 
# 序号(表示每月的第几个周几),例如在周字段上设置"6#3"表示在每月的第三个周六.注意如果指定"#5",正好第五周没有周六,则不会触发该配置(用在母亲节和父亲节再合适不过了) 
小提示 
周字段的设置,若使用英文字母是不区分大小写的 MON 与mon相同. 
常用示例: 
0 0 12 * * ? 每天12点触发 
0 15 10 ? * * 每天1015分触发 
0 15 10 * * ? 每天1015分触发 
0 15 10 * * ? * 每天1015分触发 
0 15 10 * * ? 2005 2005年每天1015分触发 
0 * 14 * * ? 每天下午的 2点到259分每分触发 
0 0/5 14 * * ? 每天下午的 2点到259(整点开始,每隔5分触发) 
0 0/5 14,18 * * ? 每天下午的 2点到259(整点开始,每隔5分触发) 
每天下午的 18点到1859(整点开始,每隔5分触发) 
0 0-5 14 * * ? 每天下午的 2点到205分每分触发 
0 10,44 14 ? 3 WED     3月分每周三下午的 210分和244分触发 (特殊情况,在一个时间设置里,执行两次或                                                             两次以上的情况) 
0 59 2 ? * FRI    每周5凌晨259分触发; 
0 15 10 ? * MON-FRI 从周一到周五每天上午的1015分触发 
0 15 10 15 * ? 每月15号上午1015分触发 
0 15 10 L * ? 每月最后一天的1015分触发 
0 15 10 ? * 6L 每月最后一周的星期五的1015分触发 
0 15 10 ? * 6L 2002-20052002年到2005年每月最后一周的星期五的1015分触发 
0 15 10 ? * 6#3 每月的第三周的星期五开始触发 
0 0 12 1/5 * ? 每月的第一个中午开始每隔5天触发一次 
0 11 11 11 11 ? 每年的11111111分触发(光棍节)
<!-- 实现规则服务实时加载的定时服务配置文件 -->   
<!-- 
	功能说明:
-->
<beans xmlns="http://www.springframework.org/schema/beans"  
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
       xmlns:aop="http://www.springframework.org/schema/aop"  
       xmlns:tx="http://www.springframework.org/schema/tx"  
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd   
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd   
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">   
    <!--任务类--> 
    <bean id="springBSJQuarte" class="com.common.util.SpringBSJQuarte"/>   
    <!--直接调度现有类中的业务方法 -->
    <bean name="jobBSJBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">   
        <property name="targetObject" ref="springBSJQuarte"/>   
        <property name="targetMethod" value="getMes"/>   
    </bean>   
    <!-- 触发器情况: 基于SimpleTriggerBean任务调用 -->
    <bean id="cronBSJrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">   
       <property name="jobDetail">   
           <ref bean="jobBSJBean" />   
       </property>   
       <!--    
            每一个小时执行一次  0 0 0-23 * * ?
            每两分钟   0 */2 * * * ?  
            配置具体方法见《定时服务配置说明》 
            每100/10 0-59 * * * ?10分钟             0 0/10 0-23 * * ?
          "0 15 01 15 * ?" 每月15日上午01:15触发 
          "0 05 01 * * ?" 每天01:05触发
       0 15 3-5 * * ? 每天315-5:15执行一次
       -->   
       <property name="cronExpression">   
           <value> 0 15 3-5 * * ?</value>
       </property>   
    </bean>   
       
    <bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">   
        <property name="triggers">   
            <list>   
                <ref bean="cronBSJrigger" />   
            </list>   
        </property>   
    </bean>   
</beans>  
package com.common.util;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;

import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.scheduling.quartz.QuartzJobBean;
import com.bean.archives.CenterArchivesBean;
import com.bean.archives.ZbmeterArchivesBean;
import com.bean.fenxi.TranDayBean;
import com.bean.system.SocketBean;
import com.dao.system.DjDao;
public class SpringBSJQuarte extends QuartzJobBean{
	@Override
	protected void executeInternal(JobExecutionContext arg0)
			throws JobExecutionException {
	}
	/*
	 * 任务执行�
	 */
	public void getMes(){
		//判断是否启动抄数据
		ApplicationContext context = new ClassPathXmlApplicationContext("applicationBt.xml");
		DjDao dj = (DjDao)context.getBean("djDao"); 
		DecimalFormat df=new DecimalFormat("#.00");
		if(1==1){
		//查找数据网关
		List<SocketBean> socketList = SpringCkQuarte.socketNetList;
		String onlinMeter = "";
		for(int k=0;k<socketList.size();k++){
			SocketBean sb = (SocketBean)socketList.get(k);
			onlinMeter+="'"+sb.getMemter()+"',";
		}
		if(onlinMeter.length()>5){
			onlinMeter=onlinMeter.substring(0, onlinMeter.length()-1);
		}
		List<CenterArchivesBean> retList = new ArrayList<CenterArchivesBean>();
		//获取所有的数据网关信息
		try {
			retList = dj.getBcbZb(onlinMeter);
		} catch (Exception e1) {
			// TODO Auto-generated catch block
			e1.printStackTrace();
		}
		//获取数据网关下边的小表信息
	    //抄回来的数据
	    List<ZbmeterArchivesBean> cList=new ArrayList<ZbmeterArchivesBean>();
	    int allFacNum=0;
		List<ZbmeterArchivesBean> listView = new ArrayList<ZbmeterArchivesBean>();
		ThreadFactory a= new ThreadFactory() { 
	        public Thread newThread(Runnable r) { 
	            Thread s = Executors.defaultThreadFactory().newThread(r); 
	            s.setDaemon(true); 
	            return s; 
	        } 
		 };
		 ExecutorService executor = Executors.newCachedThreadPool(a);
		System.out.println("retList.size()==="+retList.size());
		for(int i=0;i<retList.size();i++){
			List<ZbmeterArchivesBean> factoryZbMeterList = new ArrayList<ZbmeterArchivesBean>();
			CenterArchivesBean cb=(CenterArchivesBean)retList.get(i);
			try {
				//2:该数据网关下的所有小表
				factoryZbMeterList = dj.getAllBSJZbMeter(cb.getFactoryNo(),cb.getIpAddr(),cb.getComPort()+"");
				allFacNum=allFacNum+factoryZbMeterList.size();
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			/**
			 * DjTherad
			 * IP,PORT
			 * listView   获得条数
			 * factoryZbMeterList 小表信息
			 * cList 抄回来的信息
			 */
			DjData djDaga=new DjData(factoryZbMeterList,cList);
			executor.execute(djDaga); 
		  }
		 executor.shutdown();
		 while (!executor.isTerminated()) { // Wait until all threads are finish
	     }
		
		System.out.println("抄收数据结束");
		TranDayBean tb=new TranDayBean();
		Calendar calendar=Calendar.getInstance();
		String now=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(calendar.getTime());
		for(int i=0;i<cList.size();i++){
			 tb.setDbxh(cList.get(i).getMType());
			 tb.setState(cList.get(i).getState());
			 tb.setDevice_guid(cList.get(i).getDeviceGuid());
			 tb.setTime(now);
			try {
				if(null==tb.getDbxh()){}else{
		               if(tb.getDbxh().equals("YMFK1000-2")||tb.getDbxh().equals("YMFK1000-3")){
							if(tb.getState().equals("1")){
								tb.setIS_OFF("1");
								tb.setA1(cList.get(i).getBmNo1());
								tb.setA2(cList.get(i).getBmNo2());
								tb.setZ_total(df.format((Double.parseDouble(tb.getA1())*100+Double.parseDouble(tb.getA2())*100)/100));
								dj.upTranDay(tb);
							}
						}else{
							if(tb.getState().equals("1")){
								tb.setIS_OFF("1");
								tb.setA1(cList.get(i).getBmNo1());
								tb.setZ_total(cList.get(i).getBmNo1());
								tb.setA2("0");
								dj.upTranDay(tb);
							}
						}
						}
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
		System.out.println("数据保存结束");

	  }
	}
}


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值