A simple RESTful API using Java and Spring Boot.
- Spring Boot
- Maven
- MySQL
- lombok
- CRUD endpoints
- Spring Data JPA to store task data in a MySQL database
- Custom Error handling for each endpoint
- MySQL server running on port 3306
- create MySQL database with name 'da_todo'
The base URL for all API endpoints is: http://localhost:8080
- URL: http://localhost:8080/tasks
- Method: GET
- URL: http://localhost:8080/tasks
- Method: GET
- Description: Get a list of all tasks
- URL: http://localhost:8080/tasks
- Method: POST
- Description: Create a new task
- Request Body: Task object in JSON format with the following properties:
- 'title' (string, required): title of the task
- 'description' (string, optional): description of the task
- URL: http://localhost:8080/tasks/{id}
- Method: GET
- Description: Get a single task by ID
- Parameters:
- '{id}': the ID of the task
- URL: http://localhost:8080/tasks/{id}
- Method: PUT
- Description: Update a task by ID
- Parameters:
- '{id}': the ID of the task
- URL: http://localhost:8080/tasks/{id}
- Method: DELETE
- Description: Delete a task by ID
- Parameters:
- '{id}': the ID of the task
- URL: http://localhost:8080/tasks/
- Method: DELETE
- Description: Delete all tasks for testing purpose, not part of assessment
- Parameters:
- '{id}': the ID of the task
- TaskNotFoundException: error thrown when task id does not exist
- FieldIncompleteException: error thrown when 'title' field is empty when creating a new task
- only title field is required when creating a task; description optional
- when updating a specified task, the body of the request must contain 'title','description' and 'column', updated or not. This will be processed on the client side.