b6ae9ec3b4
* BAEL-15951 Moved vavr, JHipster to default profiles * BAEL-14304 Include the SpringContextIntegrationTest in the default build - Added SpringContextTest.java in all the modules where SpringContextIntegrationTest already exists * BAEL-14304 Changes in pmd rule and pom.xml to run UnitTest and SpringContextTest additionally in default profiles * BAEL-14304 Minor changes |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
README.md | ||
pom.xml |
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:
- REST Query Language with Spring and JPA Criteria
- REST Query Language with Spring Data JPA Specifications
- REST Query Language with Spring Data JPA and QueryDSL
- REST Query Language – Advanced Search Operations
- REST Query Language with RSQL
- REST Query Language – Implementing OR Operation
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;