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

org.needcoke.coke.web.annotation.HttpClient Maven / Gradle / Ivy

package org.needcoke.coke.web.annotation;

import java.lang.annotation.*;


/**
 * 声明式http 客户端
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface HttpClient {

    String value() default "";

    String name() default "";

    /**
     * 链接
     */
    String uri() default "";

    String path() default "";

    /**
     * 微服务服务名
     */
    String serviceName() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy