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}