
cloud.agileframework.mvc.annotation.AgileService Maven / Gradle / Ivy
package cloud.agileframework.mvc.annotation;
import org.springframework.core.annotation.AliasFor;
import org.springframework.stereotype.Component;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author 佟盟
* 日期 2020/7/12 20:08
* 描述 TODO
* @version 1.0
* @since 1.0
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Component
@Inherited
@Documented
public @interface AgileService {
@AliasFor(
annotation = Component.class
)
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy