A demo REST API built with Spring Boot for managing anime information. This project provides a simple CRUD (Create, Read, Update, Delete) interface for anime entries.
- List all animes
- Get anime by ID
- Create new anime entries
- Update existing animes
- Delete animes
- Spring Boot 4.0.2
- Java 25
- Lombok
- Gradle (Kotlin DSL)
GET /animes- List all animesGET /animes/{id}- Get anime by IDPOST /animes- Create new animePUT /animes/{id}- Update existing animeDELETE /animes/{id}- Delete anime
Run the application:
./gradlew bootRunThe API will be available at http://localhost:8080