java-tutorials/spring-rest-full
sandip singh f6c3f9ebcb Merge branch 'BAEL-3283-latest' into BAEL-3283 2019-10-31 23:25:14 +05:30
..
src Merge branch 'BAEL-3283-latest' into BAEL-3283 2019-10-31 23:25:14 +05:30
.gitignore Merge branch 'BAEL-3283-latest' into BAEL-3283 2019-10-31 23:25:14 +05:30
README.md Merge branch 'BAEL-3283-latest' into BAEL-3283 2019-10-31 23:25:14 +05:30
pom.xml Merge branch 'BAEL-3283-latest' into BAEL-3283 2019-10-31 23:25:14 +05:30

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