ARTICLE AD BOX
When using @ImportHttpServices, the property
spring.http.service.client.<group>.base-url is ignored, leading to
IllegalArgumentException: URI with undefined scheme.
My config
@Configuration(proxyBeanMethods = false) @ImportHttpServices(group = "mygroup", types = MyClient.class) public class ClientConfig { @Bean OAuth2RestClientHttpServiceGroupConfigurer securityConfigurer( OAuth2AuthorizedClientManager manager) { return OAuth2RestClientHttpServiceGroupConfigurer.from(manager); } } spring: http: service: client: mygroup: base-url: https://api.dev.client/v1The Oauth config works fine. If I set it programmatically it works fine.
