2025-05-26 17:25:18 -07:00
2025-05-15 01:15:42 +02:00
2025-05-27 02:23:52 +02:00
2025-05-15 01:15:42 +02:00
2025-05-15 01:15:42 +02:00
2025-05-15 01:15:42 +02:00
2025-05-15 01:15:42 +02:00
2025-05-27 02:23:52 +02:00
2025-05-15 03:32:11 -07:00

Spring Boot Note Api

I'm testing spring boot, and it might become my main framework for building APIs

Endpoits

GET /api/notes - Get all notes

GET /api/note/{id} - Find note by id

POST /api/note - Add a new note

{
    "name":"What should I buy?",
    "text":"Tanya's note"
}

PUT /api/note/{id} - Update note

{
    "name":"What should I buy?",
    "text":"I bought the apple!"
}

DELETE /api/note/{id} - Delete note

S
Description
Test
Readme
85 KiB
Languages
Java 100%