com.taotao.boot.job.quartz.other1.annotation.HoneyCronJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-boot-starter-job-quartz Show documentation
Show all versions of taotao-boot-starter-job-quartz Show documentation
taotao-boot-starter-job-quartz
package com.taotao.boot.job.quartz.other1.annotation;
import com.taotao.boot.job.quartz.other1.config.HoneyJobRegistrar;
import org.apache.commons.lang3.StringUtils;
import org.quartz.CronTrigger;
import org.springframework.context.annotation.Import;
import org.springframework.stereotype.Component;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
@Import(HoneyJobRegistrar.class)
public @interface HoneyCronJob {
/**
* 任务的group。
*/
String jobGroup();
/**
* 任务的name。
*/
String jobName();
/**
* 任务触发器的group。
* 不配置时取jobGroup的值。
*/
String triggerGroup() default StringUtils.EMPTY;
/**
* 任务触发器的name。
* 不配置时取jobName的值。
*/
String triggerName() default StringUtils.EMPTY;
/**
* 定时任务的Cron表达式。
*/
String cron();
/**
* 开始时间点。
* 格式为yyyy-MM-dd HH:mm:ss。
* 不配置时取当前时间。
*/
String start() default StringUtils.EMPTY;
/**
* 结束时间点。
* 格式为yyyy-MM-dd HH:mm:ss。
*/
String end() default StringUtils.EMPTY;
/**
* Misfire策略。
* 策略取值见{@link CronTrigger}。
*/
int misfire() default 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy