Skip to content

ibm-developer-skills-network/rybmp-ycuer-java-hitcounter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot Hit Counter

This repository contains the Spring Boot version of the Hit Counter application, converted from the original Python Flask application.

Contents

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

Getting Started

Prerequisites

  • JDK 21
  • Maven 3.8+
  • Docker (optional)

Running the Application

Using Maven

mvn spring-boot:run

Using Docker

# Build the Docker image
docker build -t hitcounter:latest .

# Run the container
docker run -p 8000:8000 hitcounter:latest

Accessing the API

Running Tests

mvn test

API Endpoints

Method URL Description
GET /hits Get the current hit count
PUT /hits Increment the hit counter

License

Copyright (c) IBM Corporation. All rights reserved.

Licensed under the Apache License. See LICENSE


© IBM Corporation 2025. All rights reserved.

Releases

No releases published

Packages

No packages published