java-tutorials/spring-rest-query-language
geroza 99dd82d2ff Migrated modules to parent-boot-2 usign spring-boot 2.1:
spring-mvc-forms-thymeleaf
spring-rest
spring-rest-angular
spring-rest-query-language
spring-rest-shell
spring-rest-simple
spring-rest-template
spring-resttemplate
spring-security-mvc-boot
spring-security-openid
spring-security-sso
spring-security-thymeleaf
2018-12-12 09:29:23 -02:00
..
src fix package modif 2018-11-11 23:46:12 +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 Migrated modules to parent-boot-2 usign spring-boot 2.1: 2018-12-12 09:29:23 -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;