java-tutorials/spring-rest-query-language
amit2103 14db73cf02 [BAEL-9557] - Migrated the spring-rest-query-language to Java 8 idioms 2018-10-27 21:11:18 +05:30
..
src [BAEL-9557] - Migrated the spring-rest-query-language to Java 8 idioms 2018-10-27 21:11:18 +05:30
.gitignore
README.md
pom.xml BAEL-5246: pom cleanup (#4620) 2018-07-12 09:04:54 +02:00

README.md

=========

REST Example Project Query Language

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;