cn.cuizuoli.appranking.batch.tasklet.AppRankingJobTest.java Source code

Java tutorial

Introduction

Here is the source code for cn.cuizuoli.appranking.batch.tasklet.AppRankingJobTest.java

Source

/*
 * Copyright 2014 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 cn.cuizuoli.appranking.batch.tasklet;

import javax.annotation.Resource;

import org.joda.time.DateTime;
import org.junit.Test;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.JobParametersBuilder;
import org.springframework.batch.core.JobParametersInvalidException;
import org.springframework.batch.core.configuration.JobRegistry;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.core.launch.NoSuchJobException;
import org.springframework.batch.core.repository.JobExecutionAlreadyRunningException;
import org.springframework.batch.core.repository.JobInstanceAlreadyCompleteException;
import org.springframework.batch.core.repository.JobRestartException;

import cn.cuizuoli.appranking.test.AbstractTest;

/**
 * AppRankingJobTest
 * @author cuizuoli
 */
public class AppRankingJobTest extends AbstractTest {

    @Resource
    private JobLauncher jobLauncher;

    @Resource
    private JobRegistry jobRegistry;

    @Test
    public void execute() {
        JobExecution jobExecution = null;
        try {
            JobParametersBuilder jobParametersBuilder = new JobParametersBuilder();
            Job job = jobRegistry.getJob("appRankingJob");
            JobParameters jobParameters = jobParametersBuilder
                    .addString("date", DateTime.now().toString("yyyyMMddHHmmss")).toJobParameters();
            jobExecution = jobLauncher.run(job, jobParameters);
        } catch (NoSuchJobException e) {
            e.printStackTrace();
        } catch (JobExecutionAlreadyRunningException e) {
            e.printStackTrace();
        } catch (JobRestartException e) {
            e.printStackTrace();
        } catch (JobInstanceAlreadyCompleteException e) {
            e.printStackTrace();
        } catch (JobParametersInvalidException e) {
            e.printStackTrace();
        } finally {
            while (jobExecution.isRunning()) {
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                }
            }
        }
    }
}