Based on Spring PetClinic as of commit e316074.
Initial files copied from the original spring-petclinic repository as of commit e316074300de4761f7b100a21423525e8b8ecdc5.
Includes only the necessary files to run the application locally using Gradle and H2 database, i.e. excludes files for Maven, Docker, Kubernetes, MySQL, PostgreSQL, and GitHub Workflows.
PaediatricClinic is a Spring Boot application built using Gradle. Java 21 or later is required for the build, and the application can run with Java 21 or newer.
You can start the application on the command-line as follows:
./gradlew bootRun --no-daemonYou can then access the PaediatricClinic at http://localhost:8080/.
The command above will load the default Cedar files:
- Schema:
app/src/main/resources/cedar/paediatric-clinic.cedarschema - Entities:
app/src/main/resources/cedar/paediatric-clinic-entities.json - Policy:
app/src/main/resources/cedar/paediatric-clinic.cedar
You can change the default Cedar Policy by running, instead:
./gradlew bootRun --no-daemon --args="--policy.file=<another-policy.cedar>"You can have real-time updates by also running, on another command-line:
./gradlew classes -tIn its default configuration, PaediatricClinic 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.
At development time we recommend you use the test applications set up as main() methods in PaediatricClinicIntegrationTests (using the default H2 database and also adding Spring Boot Devtools).
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.
There is a paediatric-clinic.css in app/src/main/resources/static/resources/css.
It was generated from the paediatric-clinic.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.
| Spring Boot Configuration | Class or Java property files |
|---|---|
| PaediatricClinic README | README (this file) |
| The Main Class | PaediatricClinicApplication |
| Properties Files | application.properties |
| Caching | CacheConfiguration |
| Cedar Authorization Files README | README |
The Spring PetClinic sample application is released under version 2.0 of the Apache License.