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

top.jfunc.http.annotation.HttpService Maven / Gradle / Ivy

package top.jfunc.http.annotation;

import top.jfunc.http.interfacing.HttpServiceCreator;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * 标注一个接口是Http接口化的接口,方便扫描,也可以自定义扫描规则
 * @see HttpServiceCreator#create(Class)
 * @since 1.1.2
 */
@Documented
@Target(TYPE)
@Retention(RUNTIME)
public @interface HttpService {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy