I am using @FeignClient annotation. I want to know which httpclient was injected by Spring when i am running my application.
For example, The OkHttpClient and ApacheHttpClient feign clients can be used by setting feign.okhttp.enabled or feign.httpclient.enabled to true, respectively, and having them on the classpath.
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@FeignClient(name = "service", path = "/api/v1", configuration = ServiceConfiguration.class)
public interface ServiceClient {
@RequestMapping(method = RequestMethod.GET, value = "/test/{param1}", consumes = MediaType.APPLICATION_JSON_VALUE)
String test(@PathVariable("param1") String param);
}
I am not sure now which of these client is being injected since my application is complex with multiple httpclient libraries in the classpath.
Is there a way that i can monitor it ?
I enabled JMX and tried to view the jconsole Mbeans and there was no information about httpclients.
It's impossible to tell without seeing your Spring setup, especially if your application is complex like you said.
Since you are using Spring annotations to declare your
@FeignClient
you most likely are depending onspring-cloud-netflix-core
. If you are enabling defaults with@EnableFeignClients
take a look atFeignAutoConfiguration
class. This class registers the actual HTTP client bean. If you add bothfeign.httpclient.enabled
andfeign.okhttp.enabled
properties (which IMO is a weird setup) try debuggingFeignAutoConfiguration
to see whichClient feignClient()
bean will be registered in the Spring context.Alternatively enable wire logging in all HTTP client libraries and see which one actually executes the request based on logs.