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

org.noear.solon.extend.feign.FeignClient Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
package org.noear.solon.extend.feign;

import java.lang.annotation.*;

@Target({ElementType.TYPE, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface FeignClient {
    String url() default "";
    String group() default "";
    String name() default "";
    String path() default "";
    Class configuration() default FeignConfigurationDefault.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy