When I google, I see evidence that the CXF Rest Client uses connection pooling by default, but I'm not sure how to prove that. My sources are very old and I can't tell if it applies to cxfrs or just the web services. I can't tell if it's using HttpUrlConnection
, HttpConduit, or Apache HttpComponents. Etc.
This is my maven dependency:
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-client</artifactId>
<version>3.0.3</version>
</dependency>
Does the CXF Rest Client use connection pooling by default? If so, is there a way to adjust the settings?