This repository contains the Spring Boot version of the Hit Counter application, converted from the original Python Flask application.
This application is a simple REST API service that counts the number of hits to a URL. It demonstrates a basic Spring Boot application structure with:
- RESTful API endpoints
- Service layer
- Model objects
- Unit tests
- OpenAPI/Swagger documentation
- Docker containerization
- JDK 21
- Maven 3.8+
- Docker (optional)
mvn spring-boot:run
# Build the Docker image
docker build -t hitcounter:latest .
# Run the container
docker run -p 8000:8000 hitcounter:latest
- API Documentation: http://localhost:8000/
- API Endpoint: http://localhost:8000/hits
mvn test
Method | URL | Description |
---|---|---|
GET | /hits | Get the current hit count |
PUT | /hits | Increment the hit counter |
Copyright (c) IBM Corporation. All rights reserved.
Licensed under the Apache License. See LICENSE