java-tutorials/spring-rest-full
maibin 5569632c09
Merge pull request #6923 from guilherme-lima/patch-2
Updating javadoc
2019-05-24 09:21:10 -07:00
..
src Merge pull request #6923 from guilherme-lima/patch-2 2019-05-24 09:21:10 -07:00
.gitignore move query language to new module (#2864) 2017-10-25 18:39:04 +02:00
README.md [BAEL-14320] - Moved code for Intro to Spring Data JPA Article 2019-05-12 15:29:26 +05:30
pom.xml [BAEL-13458] - Update Spring REST Metrics article, spring boot 2, micrometer implementation 2019-04-27 19:48:09 +05:30

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:8082/spring-rest-full/auth/foos