com.taotao.boot.job.quartz.other1.annotation.HoneySimpleJob 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
The newest version!
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.SimpleTrigger;
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 HoneySimpleJob {
/**
* 任务的group。
*/
String jobGroup();
/**
* 任务的name。
*/
String jobName();
/**
* 任务触发器的group。
* 不配置时取jobGroup的值。
*/
String triggerGroup() default StringUtils.EMPTY;
/**
* 任务触发器的name。
* 不配置时取jobName的值。
*/
String triggerName() default StringUtils.EMPTY;
/**
* Trigger的重复触发间隔。
* 单位是毫秒。
*/
String repeatInterval();
/**
* Trigger的重复触发次数。
* 配置成-1表示一直执行。
*/
String repeatCount();
/**
* 开始时间点。
* 格式为yyyy-MM-dd HH:mm:ss。
* 不配置时取当前时间。
*/
String start() default StringUtils.EMPTY;
/**
* 结束时间点。
* 格式为yyyy-MM-dd HH:mm:ss。
*/
String end() default StringUtils.EMPTY;
/**
* Misfire策略。
* 策略取值见{@link SimpleTrigger}。
*/
int misfire() default 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy