This is a sample Java / Maven / Spring Boot application which provides RESTful services. It can be used as a starter project. Currently it is designed to work as this project's backend.
Installation Instructions
You can import the project as a maven application to your favorite IDE. I made my tests by using eclipse jee-2018-12.
If lombok gets in your way, by referring this answer, you can install lombok by its jar file.
To run the application
Use one of the several ways of running a Spring Boot application. Below are just three options:
Build using maven goal (or by using maven wrapper): mvn clean package and execute the resulting artifact as follows java -jar BankApplicationBackend-0.0.1-SNAPSHOT.jar or
On Unix/Linux based systems: run mvn clean package then run the resulting jar as any other executable ./BankApplicationBackend-0.0.1-SNAPSHOT.jar
请发表评论