Java application built with Spring Boot.
To run the application you can do the following:
- Run the PiggyBankApplication.java, and it will start the application.
- Or run
mvn spring-boot:run
.
If you start the application, it will also start an instance of the in-memory h2 database. To access this database use the following information:
- Url: http://localhost:8080/h2-console
- Driver Class: org.h2.Driver
- JDBC URL: jdbc:h2:mem:testdb
- User Name: sa
- Password: password
The following guides illustrate how to use some features concretely:
- Building a RESTful Web Service
- Serving Web Content with Spring MVC
- Building REST services with Spring
- Spring JPA
This app should never be used in production. This app is intended as a test and it contains some bugs to be fixed. The software is used as part of a workshop. The security of the software is also not safe for production purposes.