2b374fa8ae
* upgrade to spring boot 1.5.2 * add full update to REST API * modify ratings controller * upgrade herold * fix integration test * fix integration test * minor fix * fix integration test * fix integration test * minor cleanup * minor cleanup * remove log4j properties * use standard logbook.xml * remove log4j dependencies * remove commons-logging * merge * fix conflict * exclude commons-logging dependency * cleanup * minor fix * minor fix * fix dependency issues * Revert "fix dependency issues" This reverts commit 83bf1f9fd2e1a9a55f9cacb085669568b06b49ec. * fix dependency issues * minor fix * minor fix * minor fix * cleanup generated files * fix commons-logging issue * add parent to pom * cleanup parent dependencies * cleanup pom * cleanup pom |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
.springBeans | ||
README.md | ||
pom.xml |
README.md
=========
REST Example Project with Spring Security
Courses
The "REST With Spring" Classes: http://bit.ly/restwithspring
The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
Relevant Articles:
- Spring Security Expressions - hasRole Example
- REST Pagination in Spring
- HATEOAS for a Spring REST Service
- REST API Discoverability and HATEOAS
- ETags for REST with Spring
- Error Handling for REST with Spring 3
- Integration Testing with the Maven Cargo plugin
- Introduction to Spring Data JPA
- Project Configuration with Spring
- 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
- Metrics for your Spring REST API
- REST Query Language with RSQL
- Spring RestTemplate Tutorial
- A Guide to CSRF Protection in Spring Security
- Intro to Spring Security Expressions
- Changing Spring Model Parameters with Handler Interceptor
- Introduction to Spring MVC HandlerInterceptor
- Using a Custom Spring MVC’s Handler Interceptor to Manage Sessions
- Bootstrap a Web Application with Spring 4
- 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;
Use the REST Service
curl http://localhost:8080/spring-security-rest-full/foos