java-tutorials/spring-rest-full
YuCheng Hu 5097f44328 Add Spring Rest-full 2020-03-20 15:18:36 -04:00
..
src Add Spring Rest-full 2020-03-20 15:18:36 -04:00
.gitignore Add Spring Rest-full 2020-03-20 15:18:36 -04:00
README.md Add Spring Rest-full 2020-03-20 15:18:36 -04:00
pom.xml Add Spring Rest-full 2020-03-20 15:18:36 -04:00

README.md

Spring REST Full

This module contains articles about 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