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

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

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}