Spring Web Services
Exercise: Todo REST Service Testing
The objective of this exercise is to implement different tests for the RESTful todo web service.
Assignment
	- Add the Spring starter spring-boot-starter-testand the REST-assured libraryio.rest-assured:rest-assuredto the Maven project
- Add an SQL file data.sqlthat inserts some test data into the H2 database and set the application propertyspring.jpa.defer-datasource-initializationto true
- Implement integration tests of the todo web service using
		
	
- Configure the Maven Failsafe plugin to run the integration tests
Solution