http-interface-clients

Installation
SKILL.md

Declarative HTTP Interface Clients (Boot 3)

Spring Framework 6 supports @HttpExchange interfaces, but Boot 3 does not provide Boot 4's @ImportHttpServices group auto-registration. Build the client adapter explicitly.

@HttpExchange("/orders")
interface OrderApiClient {
    @GetExchange("/{id}")
    OrderDto get(@PathVariable UUID id);
}
Installs
33
GitHub Stars
271
First Seen
Aug 7, 2026
http-interface-clients — rrezartprebreza/spring-boot-skills