7dc8fdba7e | ||
---|---|---|
.. | ||
src | ||
.gitignore | ||
README.md | ||
pom.xml |
README.md
Spring REST Testing
This module contains articles about testing REST APIs with Spring
Courses
The "REST With Spring" Classes: http://bit.ly/restwithspring
The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
Relevant Articles:
- Integration Testing with the Maven Cargo plugin
- Metrics for your Spring REST API
- Testing Exceptions with Spring MockMvc
Build the Project
mvn clean install
Set up MySQL
mysql -u root -p
> CREATE USER 'tutorialuser'@'localhost' IDENTIFIED BY 'tutorialmy5ql';
> GRANT ALL PRIVILEGES ON *.* TO 'tutorialuser'@'localhost';
> FLUSH PRIVILEGES;
Use the REST Service
curl http://localhost:8082/spring-rest-full/auth/foos