Class and Description |
---|
feign.QueryMapEncoder.Default
use
BeanQueryMapEncoder instead. default encoder uses reflection to inspect
provided objects Fields to expand the objects values into a query string. If you
prefer that the query string be built using getter and setter methods, as defined
in the Java Beans API, please use the BeanQueryMapEncoder |
Constructor and Description |
---|
feign.Logger.JavaLogger()
Use
JavaLogger(String) or JavaLogger(Class) instead.
This constructor can be used to create just one logger. Example =
Logger.JavaLogger().appendToFile("logs/first.log")
If you create multiple loggers for multiple clients and provide different files
to write log - you'll have unexpected behavior - all clients will write same log
to each file.
That's why this constructor will be removed in future. |
feign.Request.Options(int, int) |
feign.Request.Options(int, int, boolean) |
feign.RequestTemplate(RequestTemplate)
replaced by
RequestTemplate.from(RequestTemplate) |
feign.RetryableException(int, String, Request.HttpMethod, Date, Request) |
feign.RetryableException(int, String, Request.HttpMethod, Date, Request, byte[], Map<String, Collection<String>>) |
feign.RetryableException(int, String, Request.HttpMethod, Throwable, Date, Request) |
Annotation Type Element and Description |
---|
feign.QueryMap.encoded |
feign.Param.encoded |
Copyright © 2012–2023 OpenFeign. All rights reserved.