java-tutorials/spring-web-modules/spring-rest-testing
collaboratewithakash 5a82b50f5a backlink updated 2023-05-31 17:29:35 +05:30
..
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 backlink updated 2023-05-31 17:29:35 +05:30
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