Skip to content

diegap/clean-crud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clean-crud

Example of reactive-crud following uncle Bob's clean-architecture style

alt text

Build

$ ./gradlew clean build


Run

$ ./gradlew bootRun

It will start a flapdoodle embedded mongo database locally, listening on a random port


Endpoints

Retrieve all books: GET localhost:8080/books

Retrieve book by id: GET localhost:8080/books/{id}

Create book: POST localhost:8080/books

{
    "title": "1984",
    "category": "FICTION",
    "author": {
        "fullName": "George Orwell"
    },
    "year": 1949
}

Update book: PUT localhost:8080/books

{
    "id":"5c0d82ddd7524043aeec084f"
    "title": "1984",
    "category": "FICTION",
    "author": {
        "fullName": "Eric Arthur Blair"
    },
    "year": 1949
}

Remove book: DELETE localhost:8080/books/{id}