This Books Library console application is dedicated to show the core abilities of Spring & Hibernate frameworks. The project was used in IT-Academy as a training sandbox while learning spring & hibernate frameworks during java course. Later it was refactored to satisfy the modern standards of Software Development.
System name: book-library
- Setup MySql database on your environment
- Run create_schema.sql
- Adjust application.yaml configuration for your environment
spring:
datasource:
username: ${database.username}
password: ${database.password}
url: jdbc:mysql://${database.url}/book_library
$ mvn -U clean install
$ mvn spring-boot:run