java-tutorials/spring-rest-testing
johnA1331 a12969fb8b Update README.md 2020-07-21 20:53:15 +08:00
..
src [BAEL-4084] Useless line removed 2020-06-21 22:52:49 +02:00
.gitignore [BAEL-19366] REST move 3 2019-11-26 16:59:51 +00:00
README.md Update README.md 2020-07-21 20:53:15 +08:00
pom.xml [BAEL-4084] Correct indentation II 2020-06-21 10:23:59 +02: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