java-tutorials/spring-rest-query-language
2018-10-28 09:31:42 +02:00
..
2018-10-28 09:31:42 +02:00
2018-07-12 09:04:54 +02:00

=========

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;