A simple web application based on Spring Boot presented by me on JUGademy meetup.
To start the application go to the root directory and type:
./gradlew bootRun
To view it in a web browser go to a http://localhost:8080/persons-creator URL.
The application uses embedded MongoDB as database so you don't need to install MongoDB on your own.
To run test download the Firefox web browser and the geckodriver. Install Firefox and unpack geckodriver executable file. Now run test by typing:
./gradlew test -Dwebdriver.gecko.driver="Absolute path to geckodriver executable file"
The test is slowed down intentionally for demonstration purpose.