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
- Host: GitHub
- URL: https://github.com/athiththan11/feign-jsonplaceholder
- Owner: athiththan11
- License: mit
- Created: 2019-02-18T13:45:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-21T12:00:49.000Z (about 7 years ago)
- Last Synced: 2025-10-04T06:53:46.198Z (8 months ago)
- Topics: feign, java-8, jsonplaceholder-api, maven, openfeign
- Language: Java
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)