java-tutorials/spring-rest-full
Ger Roza 52b164ffca [BAEL-11597] Move and update Etags article
* Moved etags article related code
* Fixed existing etag Ignored test
* Added etag scentsio adding etag support to a single endpoint
* Added tests for single endpoint etag scenario
* Cleaned now unused code in spring-rest-full module
2019-02-24 09:40:25 -03:00
..
src [BAEL-11597] Move and update Etags article 2019-02-24 09:40:25 -03:00
.gitignore move query language to new module (#2864) 2017-10-25 18:39:04 +02:00
README.md [BAEL-11597] Move and update Etags article 2019-02-24 09:40:25 -03:00
pom.xml Removed most exception handlers from spring-rest-full (except the ones used in other articles) and moved them to spring-boot-rest 2019-01-15 18:45:36 -02: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:8082/spring-rest-full/auth/foos