java-tutorials/spring-rest-full
Ger Roza 2814327079 Moved article from Readme files 2019-01-29 19:17:01 -02:00
..
src Moved Building REST API article related code from spring-rest-full to spring-boot-rest module 2019-01-29 17:04:33 -02:00
.gitignore move query language to new module (#2864) 2017-10-25 18:39:04 +02:00
README.md Moved article from Readme files 2019-01-29 19:17:01 -02:00
pom.xml Removed most exception handlers from spring-rest-full (except the ones used in other articles) and moved them to spring-boot-rest 2019-01-15 18:45:36 -02:00

README.md

=========

REST Example Project 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