java-tutorials/spring-rest-query-language
sumit-bhawsar 2e97ec17f4 BAEL-3335 example of reading request multiple times. removed spring boot and using spring-webmvc 2019-10-20 04:01:29 +01:00
..
src BAEL-3335 example of reading request multiple times. removed spring boot and using spring-webmvc 2019-10-20 04:01:29 +01:00
.gitignore BAEL-3335 example of reading request multiple times. removed spring boot and using spring-webmvc 2019-10-20 04:01:29 +01:00
README.md BAEL-3335 example of reading request multiple times. removed spring boot and using spring-webmvc 2019-10-20 04:01:29 +01:00
pom.xml BAEL-3335 example of reading request multiple times. removed spring boot and using spring-webmvc 2019-10-20 04:01:29 +01: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;