java-tutorials/spring-rest-full
Doha2012 fe0e0ba115 upgrade boot parent (#3352)
* make sure modules using java8

* move url matching code

* upgrade boot parent

* minor cleanup
2018-01-05 20:56:21 +01:00
..
src Rename test to testFile (#3060) 2017-11-20 22:20:06 +01: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 upgrade boot parent (#3352) 2018-01-05 20:56:21 +01:00

README.md

=========

REST Example Project 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;

Use the REST Service

curl http://localhost:8080/spring-rest-full/foos