Spring Cloud Gateway provides a way to configure httpclient property like
spring:
application:
cloud:
gateway:
httpclient:
connect-timeout: 1000
response-timeout: 5s
pool:
maxIdleTime: 15s
I don't see any property for connection leasing strategy through which I can change it to lifo (default is fifo).
Thank you