Uses of Class
feign.Feign.Builder
-
Packages that use Feign.Builder Package Description feign -
-
Uses of Feign.Builder in feign
Methods in feign that return Feign.Builder Modifier and Type Method Description static Feign.BuilderFeign. builder()Feign.BuilderFeign.Builder. client(Client client)Feign.BuilderFeign.Builder. contract(Contract contract)Feign.BuilderFeign.Builder. decode404()This flag indicates that thedecodershould process responses with 404 status, specifically returning null or empty instead of throwingFeignException.Feign.BuilderFeign.Builder. decoder(Decoder decoder)Feign.BuilderFeign.Builder. doNotCloseAfterDecode()This flag indicates that the response should not be automatically closed upon completion of decoding the message.Feign.BuilderFeign.Builder. encoder(Encoder encoder)Feign.BuilderFeign.Builder. errorDecoder(ErrorDecoder errorDecoder)Feign.BuilderFeign.Builder. exceptionPropagationPolicy(ExceptionPropagationPolicy propagationPolicy)Feign.BuilderFeign.Builder. invocationHandlerFactory(InvocationHandlerFactory invocationHandlerFactory)Allows you to override how reflective dispatch works inside of Feign.Feign.BuilderFeign.Builder. logger(Logger logger)Feign.BuilderFeign.Builder. logLevel(Logger.Level logLevel)Feign.BuilderFeign.Builder. mapAndDecode(ResponseMapper mapper, Decoder decoder)Allows to map the response before passing it to the decoder.Feign.BuilderFeign.Builder. options(Request.Options options)Feign.BuilderFeign.Builder. queryMapEncoder(QueryMapEncoder queryMapEncoder)Feign.BuilderFeign.Builder. requestInterceptor(RequestInterceptor requestInterceptor)Adds a single request interceptor to the builder.Feign.BuilderFeign.Builder. requestInterceptors(java.lang.Iterable<RequestInterceptor> requestInterceptors)Sets the full set of request interceptors for the builder, overwriting any previous interceptors.Feign.BuilderFeign.Builder. retryer(Retryer retryer)
-