java-tutorials/spring-web-modules/spring-rest-testing
Haroon Khan e5f1f8a3b6 [JAVA-9910] Update Cargo plugin to latest version 2022-02-14 21:18:51 +00:00
..
src [JAVA-9910] Update Cargo plugin to latest version 2022-02-14 21:18:51 +00:00
.gitignore JAVA-3538: Move spring-rest-testing into spring-web-modules 2021-01-04 16:27:21 +01:00
README.md [JAVA-9604] Refactor and code clean-up for Metrics article 2022-01-31 12:45:28 +00:00
pom.xml [JAVA-9910] Update Cargo plugin to latest version 2022-02-14 21:18:51 +00:00

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:

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