com.beginner.core.quartz.BaseJob.java Source code

Java tutorial

Introduction

Here is the source code for com.beginner.core.quartz.BaseJob.java

Source

/*
 * Copyright 2015-9999 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.beginner.core.quartz;

import org.joda.time.DateTime;
import org.joda.time.format.DateTimeFormat;
import org.quartz.Job;
import org.quartz.JobDataMap;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.quartz.impl.JobDetailImpl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* <b>??</b>BaseJob<br/>
* <b>??</b><br/>
* <b></b>Hsiao Lin Studio<br/>
* <b></b><br/>
* <b></b>20150521 ?6:18:18<br/>
* <b></b><br/>
* @version 1.0.0<br/>
*/
public abstract class BaseJob implements Job {

    private static Logger logger = LoggerFactory.getLogger(BaseJob.class);

    @Override
    public void execute(JobExecutionContext context) throws JobExecutionException {
        JobDetailImpl jobDetail = (JobDetailImpl) context.getJobDetail();
        logger.info(",JobKey:[" + jobDetail.getKey() + "],:"
                + DateTime.now().toString(DateTimeFormat.fullDateTime()));
        jobHandler(context.getMergedJobDataMap());
        logger.info("?,JobKey:[" + jobDetail.getKey() + "],?:"
                + DateTime.now().toString(DateTimeFormat.fullDateTime()));
    }

    public abstract void jobHandler(JobDataMap jobDataMap);
}