- View a list of veterinarians and their specialties
- View information pertaining to a pet owner
- Update the information pertaining to a pet owner
- Add a new pet owner to the system
- View information pertaining to a pet
- Update the information pertaining to a pet
- Add a new pet to the system
- View information pertaining to a pet's visitation history
- Add information pertaining to a visit to the pet's visitation history
Pet Clinic is a Spring Boot application built using Maven. You can build a jar file and run it from the command line:
git clone https://github.com/enesoral/Pet-Clinic
cd Pet-Clinic
./mvnw package
java -jar petclinicweb/target/*.jar
You can then access petclinic here: http://localhost:8080/
The following items should be installed in your system:
- Java 8 or newer.
- Your preferred IDE.
In its default configuration, Pet Clinic uses an in-memory database (H2) which
gets populated at startup with data. The h2 console is automatically exposed at http://localhost:8080/h2-console
and it is possible to inspect the content of the database using the jdbc:h2:mem:testdb
url.
You can take a look at here for MySql connection.
The issue tracker is the preferred channel for bug reports, features requests and submitting pull requests.