OpenFeign默认HTTP实现为HttpURLConnection,不支持连接池。
OkHttp
引入依赖
pom.xml中:
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-okhttp</artifactId>
</dependency>配置
application.yml中:
feign:
okhttp:
enabled: trueOpenFeign默认HTTP实现为HttpURLConnection,不支持连接池。
pom.xml中:
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-okhttp</artifactId>
</dependency>application.yml中:
feign:
okhttp:
enabled: true