Technical requirements
The code for this chapter is available at https://github.com/PacktPublishing/Test-Driven-Development-with-Java/tree/main/chapter15.
Before attempting to run the final application, perform the following steps:
- Ensure the Postgres database is running locally.
- Ensure the database setup steps from Chapter 14 , Driving the Database Layer, have been completed.
- Open the Postgres pqsl command terminal and enter the following SQL command:
insert into word values (1, 'ARISE'), (2, 'SHINE'), (3, 'LIGHT'), (4, 'SLEEP'), (5, 'BEARS'), (6, 'GREET'), (7, 'GRATE');
- Install Postman by following the instructions at https://www.postman.com/downloads/.