java-tutorials/spring-web-modules/spring-rest-query-language
collaboratewithakash 883817b66f Update README.md 2022-09-23 15:04:24 +05:30
..
src
.gitignore
README.md Update README.md 2022-09-23 15:04:24 +05:30
pom.xml

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;