All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.cwdtom.hermes.annotation.EnableHermes Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.github.cwdtom.hermes.annotation;

import com.github.cwdtom.hermes.HermesRegister;
import com.github.cwdtom.hermes.timer.Timer;
import org.springframework.context.annotation.Import;
import org.springframework.scheduling.annotation.EnableScheduling;

import java.lang.annotation.*;

/**
 * 启用Hermes
 *
 * @author chenweidong
 * @since 1.2.0
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import({HermesRegister.class, Timer.class})
@EnableScheduling
public @interface EnableHermes {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy