Small Spring Boot demo for serving calendar events to a FullCalendar UI.
This is a learning/demo project. It is relevant to my automation direction because it connects backend event data with a calendar interface, which is close to the kind of workflow automation I build for tender and task planning.
- Serves a simple web page with FullCalendar
- Exposes calendar event data through a REST endpoint
- Uses Thymeleaf for server-rendered pages
- Uses WebJars for frontend dependencies
- Java 17
- Spring Boot 2.7
- Spring MVC
- Thymeleaf
- FullCalendar
- Gradle
GET /- calendar pageGET /api/event/all- JSON list of demo events
./gradlew bootRunThen open:
http://localhost:8080
Learning/demo project. The next useful improvements would be persistent storage, real event CRUD, validation, and a webhook endpoint for automation scenarios.