Skip to content

Instantly share code, notes, and snippets.

@sabbarmehdi
Created July 28, 2021 15:39
Show Gist options
  • Save sabbarmehdi/a5d44368af322e2e6a38d9358d7b84ce to your computer and use it in GitHub Desktop.
Save sabbarmehdi/a5d44368af322e2e6a38d9358d7b84ce to your computer and use it in GitHub Desktop.
feign
@FeignClient(name = "item-service")
public interface ItemsServiceClient {
@GetMapping(value = "/item/user-items")
public List<Item> getItems(@RequestParam Long userId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment