java-tutorials/spring-rest-query-language
matt.rossi 1076a9c8d9 Fix Format 2019-10-11 18:11:03 +02:00
..
src Fix Format 2019-10-11 18:11:03 +02:00
.gitignore Fix Format 2019-10-11 18:11:03 +02:00
README.md Fix Format 2019-10-11 18:11:03 +02:00
pom.xml Fix Format 2019-10-11 18:11:03 +02:00

README.md

Spring REST Query Language

This module contains articles about the REST query language 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;