A sample Spring-based application
Find a file
2025-11-23 20:55:08 -05:00
.devcontainer Add a Dockerfile for dev environments other than codespaces 2024-11-28 14:45:59 +00:00
.github Switch to building the project with Java 25 2025-10-14 12:37:18 +02:00
.mvn Add NullAway and JSpecify annotations 2025-10-14 12:13:13 +02:00
gradle/wrapper Remove outdated wrapper 2025-11-12 14:00:13 +01:00
k8s Update to current versions 2025-10-06 19:23:19 +01:00
monitoring add docker compose file for tool setting 2025-10-30 16:02:24 -04:00
src Upgrad to Spring Boot 4.0.0-RC2 2025-11-12 13:50:07 +01:00
.checkstyle-suppressions.xml add owasp 2025-11-23 02:12:47 -05:00
.editorconfig Add Gradle files indentation to .editorconfig 2024-02-20 17:14:43 +00:00
.gitattributes Update to current versions 2025-10-06 19:23:19 +01:00
.gitignore add .env to gitignore, modify sonarqube setting 2025-11-23 16:08:52 -05:00
.gitpod.yml Add devcontainer and gitpod 2022-06-09 11:24:17 +01:00
.sdkmanrc Switch to building the project with Java 25 2025-10-14 12:37:18 +02:00
build.gradle Remove outdated wrapper 2025-11-12 14:00:13 +01:00
DEVOPS_SETUP.md add new read me fore project 2025-11-23 19:38:14 -05:00
docker-compose.yml add new read me fore project 2025-11-23 19:38:14 -05:00
Dockerfile.maven-java25 Increase memory and add Maven retry for stability 2025-11-23 17:07:12 -05:00
gradlew Upgrade to Gradle 9.1.0 2025-10-14 12:36:02 +02:00
gradlew.bat Upgrade to Gradle 9.1.0 2025-10-14 12:36:02 +02:00
jenkins-quickstart.sh Add Jenkins pipeline with automated builds 2025-10-31 18:49:27 -04:00
jenkins.yaml add auto script for jenkins addon 2025-11-23 19:52:52 -05:00
Jenkinsfile save zap_report 2025-11-23 20:55:08 -05:00
Jenkinsfile.gradle Add Jenkins pipeline with automated builds 2025-10-31 18:49:27 -04:00
LICENSE.txt Add license file 2021-10-05 16:49:36 +01:00
mvnw Update to current versions 2025-10-06 19:23:19 +01:00
mvnw.cmd Update to current versions 2025-10-06 19:23:19 +01:00
pom.xml add plugin 2025-11-23 16:14:31 -05:00
README.md fix gramma 2025-11-23 20:38:15 -05:00
settings.gradle Make build work with Gradle 2021-12-16 11:25:09 +00:00
sonar-project.properties add sonarqube 2025-11-11 01:24:55 -05:00

From the project root, provision the stack:

docker compose up -d

Spring PetClinic Sample Application Build StatusBuild Status

Open in Gitpod Open in GitHub Codespaces

Understanding the Spring Petclinic application with a few diagrams

See the presentation here:
Spring Petclinic Sample Application (legacy slides)

Note: These slides refer to a legacy, preSpring Boot version of Petclinic and may not reflect the current Spring Bootbased implementation.
For up-to-date information, please refer to this repository and its documentation.

Run Petclinic locally

Spring Petclinic is a Spring Boot application built using Maven or Gradle. Java 25 or later is required for the build, but the application can run with Java 17 or newer:

git clone https://github.com/spring-projects/spring-petclinic.git
cd spring-petclinic
./mvnw package
java -jar target/*.jar

(On Windows, or if your shell doesn't expand the glob, you might need to specify the JAR file name explicitly on the command line at the end there.)

You can then access the Petclinic at http://localhost:8080/.

petclinic-screenshot

Or you can run it from Maven directly using the Spring Boot Maven plugin. If you do this, it will pick up changes that you make in the project immediately (changes to Java source files require a compile as well - most people use an IDE for this):

./mvnw spring-boot:run

NOTE: If you prefer to use Gradle, you can build the app using ./gradlew build and look for the jar file in build/libs.

Building a Container

There is no Dockerfile in this project. You can build a container image (if you have a docker daemon) using the Spring Boot build plugin:

./mvnw spring-boot:build-image

Continuous Integration with Jenkins, SonarQube and Blue Ocean (Automated Setup)

This project uses Jenkins Configuration as Code (JCasC) to automatically configure all tools and plugins.

Quick Start

  1. Generate SonarQube Token:

    • Start SonarQube: docker compose up -d sonarqube
    • Open http://localhost:9000 (login: admin/admin, change password on first login)
    • Go to My Account → Security → Generate Tokens
    • Copy the generated token
  2. Configure Environment:

    cp env.example .env
    # Edit .env and paste your SonarQube token
    
  3. Start All Services:

    docker compose up -d
    
  4. Access Jenkins:

    • Open http://localhost:8082/jenkins
    • Jenkins is pre-configured with:
      • SonarQube server connection (SonarQubeServer)
      • Required plugins (SonarQube Scanner, JaCoCo, Blue Ocean, etc.)
      • Maven and JDK tools
  5. Create Pipeline:

    • In Jenkins, create a new Multibranch Pipeline or Pipeline job pointing to this repository
    • The Jenkinsfile contains stages: Checkout → Build → Test → SonarQube Analysis → Quality Gate → Checkstyle → Package → Archive
  6. View in Blue Ocean:

    • Click "Open Blue Ocean" in Jenkins sidebar
    • Visualize pipeline stages, test results, and quality gate status
  7. Review Results:

    • SonarQube dashboard: http://localhost:9000
    • Prometheus metrics: http://localhost:9090
    • Grafana dashboards: http://localhost:3030 (admin/admin)

In case you find a bug/suggested improvement for Spring Petclinic

Our issue tracker is available here.

Database configuration

In its default configuration, Petclinic uses an in-memory database (H2) which gets populated at startup with data. The h2 console is exposed at http://localhost:8080/h2-console, and it is possible to inspect the content of the database using the jdbc:h2:mem:<uuid> URL. The UUID is printed at startup to the console.

A similar setup is provided for MySQL and PostgreSQL if a persistent database configuration is needed. Note that whenever the database type changes, the app needs to run with a different profile: spring.profiles.active=mysql for MySQL or spring.profiles.active=postgres for PostgreSQL. See the Spring Boot documentation for more detail on how to set the active profile.

You can start MySQL or PostgreSQL locally with whatever installer works for your OS or use docker:

docker run -e MYSQL_USER=petclinic -e MYSQL_PASSWORD=petclinic -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=petclinic -p 3306:3306 mysql:9.2

or

docker run -e POSTGRES_USER=petclinic -e POSTGRES_PASSWORD=petclinic -e POSTGRES_DB=petclinic -p 5432:5432 postgres:18.0

Further documentation is provided for MySQL and PostgreSQL.

Instead of vanilla docker you can also use the provided docker-compose.yml file to start the database containers. Each one has a service named after the Spring profile:

docker compose up mysql

or

docker compose up postgres

Test Applications

At development time we recommend you use the test applications set up as main() methods in PetClinicIntegrationTests (using the default H2 database and also adding Spring Boot Devtools), MySqlTestApplication and PostgresIntegrationTests. These are set up so that you can run the apps in your IDE to get fast feedback and also run the same classes as integration tests against the respective database. The MySql integration tests use Testcontainers to start the database in a Docker container, and the Postgres tests use Docker Compose to do the same thing.

Compiling the CSS

There is a petclinic.css in src/main/resources/static/resources/css. It was generated from the petclinic.scss source, combined with the Bootstrap library. If you make changes to the scss, or upgrade Bootstrap, you will need to re-compile the CSS resources using the Maven profile "css", i.e. ./mvnw package -P css. There is no build profile for Gradle to compile the CSS.

Working with Petclinic in your IDE

Prerequisites

The following items should be installed in your system:

Steps

  1. On the command line run:

    git clone https://github.com/spring-projects/spring-petclinic.git
    
  2. Inside Eclipse or STS:

    Open the project via File -> Import -> Maven -> Existing Maven project, then select the root directory of the cloned repo.

    Then either build on the command line ./mvnw generate-resources or use the Eclipse launcher (right-click on project and Run As -> Maven install) to generate the CSS. Run the application's main method by right-clicking on it and choosing Run As -> Java Application.

  3. Inside IntelliJ IDEA:

    In the main menu, choose File -> Open and select the Petclinic pom.xml. Click on the Open button.

    • CSS files are generated from the Maven build. You can build them on the command line ./mvnw generate-resources or right-click on the spring-petclinic project then Maven -> Generates sources and Update Folders.

    • A run configuration named PetClinicApplication should have been created for you if you're using a recent Ultimate version. Otherwise, run the application by right-clicking on the PetClinicApplication main class and choosing Run 'PetClinicApplication'.

  4. Navigate to the Petclinic

    Visit http://localhost:8080 in your browser.

Looking for something in particular?

Spring Boot Configuration Class or Java property files
The Main Class PetClinicApplication
Properties Files application.properties
Caching CacheConfiguration

Interesting Spring Petclinic branches and forks

The Spring Petclinic "main" branch in the spring-projects GitHub org is the "canonical" implementation based on Spring Boot and Thymeleaf. There are quite a few forks in the GitHub org spring-petclinic. If you are interested in using a different technology stack to implement the Pet Clinic, please join the community there.

Interaction with other open-source projects

One of the best parts about working on the Spring Petclinic application is that we have the opportunity to work in direct contact with many Open Source projects. We found bugs/suggested improvements on various topics such as Spring, Spring Data, Bean Validation and even Eclipse! In many cases, they've been fixed/implemented in just a few days. Here is a list of them:

Name Issue
Spring JDBC: simplify usage of NamedParameterJdbcTemplate SPR-10256 and SPR-10257
Bean Validation / Hibernate Validator: simplify Maven dependencies and backward compatibility HV-790 and HV-792
Spring Data: provide more flexibility when working with JPQL queries DATAJPA-292

Contributing

The issue tracker is the preferred channel for bug reports, feature requests and submitting pull requests.

For pull requests, editor preferences are available in the editor config for easy use in common text editors. Read more and download plugins at https://editorconfig.org. All commits must include a Signed-off-by trailer at the end of each commit message to indicate that the contributor agrees to the Developer Certificate of Origin. For additional details, please refer to the blog post Hello DCO, Goodbye CLA: Simplifying Contributions to Spring.

License

The Spring PetClinic sample application is released under version 2.0 of the Apache License.