java-tutorials/spring-rest-full
sachin29aug 375c50e805 BAEL-8939: Adding a Spring Context test in all Spring Modules (changes for around 21 more modules.. work in progress..) 2018-09-15 13:57:53 -04:00
..
src BAEL-8939: Adding a Spring Context test in all Spring Modules (changes for around 21 more modules.. work in progress..) 2018-09-15 13:57:53 -04:00
.gitignore move query language to new module (#2864) 2017-10-25 18:39:04 +02:00
README.md [BAEL-8496] - Moved articles to their own spring-resttemplate module 2018-08-26 23:25:23 +05:30
pom.xml fix formatting 2018-09-01 18:12:48 +03: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