java-tutorials/spring-rest-testing
Krzysztof Woyke 6af6f685fd JAVA-3710: Replace hibernate-entitymanager dependency with hibernate-core 2020-12-24 13:07:07 +01: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 JAVA-3710: Replace hibernate-entitymanager dependency with hibernate-core 2020-12-24 13:07:07 +01: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