java-tutorials/spring-rest-query-language
Sam Millington 9f18b6bcbe [BAEL-17495] - Add README descriptions 11 (#7861)
* [BAEL-17495] - Add README descriptions 11

* Changed wording for the REST modules
2019-09-25 07:28:28 -06:00
..
src [BAEL-9498] Fix failing context tests - part 2 (#7738) 2019-09-09 12:16:40 +01:00
.gitignore move query language to new module (#2864) 2017-10-25 18:39:04 +02:00
README.md [BAEL-17495] - Add README descriptions 11 (#7861) 2019-09-25 07:28:28 -06:00
pom.xml [BAEL-15942] - POM Properties Cleanup 2019-07-14 18:40:26 +05:30

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;