An open API service indexing awesome lists of open source software.

https://github.com/athiththan11/feign-jsonplaceholder

Implementation and Usage of Feign with JSONPlaceholder
https://github.com/athiththan11/feign-jsonplaceholder

feign java-8 jsonplaceholder-api maven openfeign

Last synced: 20 days ago
JSON representation

Implementation and Usage of Feign with JSONPlaceholder

Awesome Lists containing this project

README

          

# Feign with JSONPlaceholder

A sample implementation to demonstrate the usage of [feign](https://github.com/OpenFeign/feign) using [JSONPlaceholder](https://jsonplaceholder.typicode.com/) APIs and data

## JSONPlaceholder API

This demo application uses the following API endpoints to demo the usage of feign

- [/users](https://jsonplaceholder.typicode.com/users)
- [/users/{id}](https://jsonplaceholder.typicode.com/users/1)
- [/users/{id}/posts](https://jsonplaceholder.typicode.com/users/1/posts)