https://github.com/pawfa/petclinic
Petclinic - CRUD application using Spring Framework
https://github.com/pawfa/petclinic
java petclinic spring spring-boot
Last synced: 3 months ago
JSON representation
Petclinic - CRUD application using Spring Framework
- Host: GitHub
- URL: https://github.com/pawfa/petclinic
- Owner: pawfa
- Created: 2017-07-21T14:05:03.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-21T08:30:29.000Z (about 7 years ago)
- Last Synced: 2025-01-13T11:50:05.520Z (5 months ago)
- Topics: java, petclinic, spring, spring-boot
- Language: Java
- Homepage:
- Size: 239 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pet Clinic
Simple Spring Boot application.
## Description
Idea was taken from example Spring application Pet Clinic. In this web application as a user you can see your pet status and as a vet you can add pets, vets and modify their properties. Every code review and criticism is welcome.
You can see working demo [here](http://petclinic.pawfa.usermd.net:8098). You can create your own account and then login as vet to add your pet with credentials: - email: [email protected] password: albus.
## Getting Started
### Technology Stack
Component | Technology
--- | ---
Frontend | [Thymeleaf](https://www.thymeleaf.org/)
Backend | [SpringBoot](https://projects.spring.io/spring-boot) (Java)
Security | Spring Security
In Memory DB | H2
Persistence | JPA (Using Spring Data)
Build Tools | Maven(Java)### Dependencies
- Java 8
- Maven 3.3.9+### Installing
To install this application, run the following commands:
```bash
git clone [email protected]:pawfa/petclinic.git
cd petclinic
```
This will get a copy of the project installed locally.### Executing program
To run the program, cd into the `petclinic` folder and run:
```bash
mvn package && java -jar target/petclinic-1.0-SNAPSHOT.jar
```