java-tutorials/spring-rest-testing
Krzysiek 37454052a1 BAEL-19967: Migrate spring-rest-testing module to the com.baeldung package 2019-12-18 21:41:35 +01:00
..
src BAEL-19967: Migrate spring-rest-testing module to the com.baeldung package 2019-12-18 21:41:35 +01:00
.gitignore [BAEL-19366] REST move 3 2019-11-26 16:59:51 +00:00
README.md [BAEL-19366] REST move 3 2019-11-26 16:59:51 +00:00
pom.xml [BAEL-18783] - Fix formatting of POMs 2019-12-06 11:40:56 +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