com.jiuxian.boot.mossrose.autoconfigure.Job Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mossrose-spring-boot-starter Show documentation
Show all versions of mossrose-spring-boot-starter Show documentation
Spring boot starter for mossrose
package com.jiuxian.boot.mossrose.autoconfigure;
import org.springframework.stereotype.Component;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Component
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Job {
String group();
String id();
String cron();
String description() default "";
int threads() default 0;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy