https://github.com/prabusubra/microservicelearning
https://github.com/prabusubra/microservicelearning
java-8 spring-boot spring-data spring-mvc springframework
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/prabusubra/microservicelearning
- Owner: prabusubra
- Created: 2018-08-15T12:36:28.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-29T02:49:59.000Z (over 7 years ago)
- Last Synced: 2025-12-27T15:58:05.998Z (6 months ago)
- Topics: java-8, spring-boot, spring-data, spring-mvc, springframework
- Language: Java
- Size: 63.5 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# microservicelearning
This repo is to learn about microservice architecture and related technologies.
REST endpoints for WebMVC:-
GET - http://localhost:7070/api/blogs
GET - http://localhost:7070/api/blogs/id/{id}
POST - http://localhost:7070/api/blogs
Request body :-
[
{
"topicid": "webflux",
"name": "webflux",
"content": "Intro and operators",
"author": "Josh Long",
"category": null
},
{
"topicid": "react",
"name": "React",
"content": "Intro and operators",
"author": "Josh Long",
"category": null
},
{
"topicid": "projectreactor",
"name": "projectreactor",
"content": "Intro and operators",
"author": "Josh Long",
"category": null
},
{
"topicid": "restmvc",
"name": "restmvc",
"content": "Intro and annotations",
"author": "Josh Long",
"category": null
}
]
DELETE - http://localhost:7070/api/blogs/id/{id}
REST endpoints for WebFlux:-
GET - http://localhost:6060/api/blogs
GET - http://localhost:6060/api/blogs/id/{id}
POST - http://localhost:6060/api/blogs
DELETE - http://localhost:7070/api/blogs/id/{id}