java-tutorials/spring-rest-query-language
Doha2012 d0b42d10f2 modify tomcat dependency (#3806) 2018-03-12 22:21:45 +02:00
..
src move query language to new module (#2864) 2017-10-25 18:39:04 +02:00
.gitignore move query language to new module (#2864) 2017-10-25 18:39:04 +02:00
README.md move query language to new module (#2864) 2017-10-25 18:39:04 +02:00
pom.xml modify tomcat dependency (#3806) 2018-03-12 22:21:45 +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;