Update Javadoc for FeignClient.configuration() (#227)

Referring to @Configuration is a bit confusing. The referred class does not need the annotation, and actually using it could cause issues due the class additionally getting picked up by the component scan.
This commit is contained in:
Michael Stummvoll
2020-01-13 21:56:47 +01:00
committed by Spencer Gibb
parent d77337bc79
commit b1e38db1e2

View File

@@ -85,7 +85,7 @@ public @interface FeignClient {
boolean decode404() default false;
/**
* A custom <code>@Configuration</code> for the feign client. Can contain override
* A custom configuration class for the feign client. Can contain override
* <code>@Bean</code> definition for the pieces that make up the client, for instance
* {@link feign.codec.Decoder}, {@link feign.codec.Encoder}, {@link feign.Contract}.
*