java-tutorials/spring-web-modules/spring-rest-query-language
Amit Pandey 4dcebecdb5
[JAVA-30682] Upgrade Spring rest query module to Spring Boot 3 and latest hibernate-core (#15741)
2024-01-30 00:40:05 +01:00
..
src [JAVA-30682] Upgrade Spring rest query module to Spring Boot 3 and latest hibernate-core (#15741) 2024-01-30 00:40:05 +01:00
.gitignore JAVA-3535 Move spring rest query language module 2020-12-30 12:14:14 +01:00
README.md Update README.md 2022-09-23 15:04:24 +05:30
pom.xml [JAVA-30682] Upgrade Spring rest query module to Spring Boot 3 and latest hibernate-core (#15741) 2024-01-30 00:40:05 +01:00

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;