Skip to content

Instantly share code, notes, and snippets.

@atesibrahim
Last active July 16, 2022 14:50
Show Gist options
  • Save atesibrahim/15d2cd81ac14038e26d837ce4f620cd3 to your computer and use it in GitHub Desktop.
Save atesibrahim/15d2cd81ac14038e26d837ce4f620cd3 to your computer and use it in GitHub Desktop.
Feign Client
@FeignClient(value = "bookApiClient", url = "${book-api.url}", configuration = BookClientFeignConfiguration.class)
public interface BookApiClient {
@GetMapping(value = "/books/{id}")
BookResponse getById(@PathVariable String id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment