2013-06-03 10:54:58 -04:00
|
|
|
=========
|
2013-07-02 06:54:41 -04:00
|
|
|
|
2013-12-18 05:48:44 -05:00
|
|
|
## REST Example Project with Spring Security
|
2013-07-02 06:54:41 -04:00
|
|
|
|
|
|
|
|
2013-07-14 07:21:30 -04:00
|
|
|
### Relevant Articles:
|
2014-01-05 11:25:01 -05:00
|
|
|
- [Spring Security Expressions - hasRole Example](http://www.baeldung.com/spring-security-expressions-basic)
|
|
|
|
- [REST Pagination in Spring](http://www.baeldung.com/2012/01/18/rest-pagination-in-spring/)
|
2014-01-05 12:35:19 -05:00
|
|
|
- [HATEOAS for a Spring REST Service](http://www.baeldung.com/2011/11/13/rest-service-discoverability-with-spring-part-5/)
|
2014-01-05 14:08:54 -05:00
|
|
|
- [REST API Discoverability and HATEOAS](http://www.baeldung.com/2011/11/06/restful-web-service-discoverability-part-4/)
|
|
|
|
- [ETags for REST with Spring](http://www.baeldung.com/2013/01/11/etags-for-rest-with-spring/)
|
2014-03-20 15:59:42 -04:00
|
|
|
- [Error Handling for REST with Spring 3](http://www.baeldung.com/2013/01/31/exception-handling-for-rest-with-spring-3-2/)
|
2014-05-16 15:49:47 -04:00
|
|
|
- [Integration Testing with the Maven Cargo plugin](http://www.baeldung.com/2011/10/16/how-to-set-up-integration-testing-with-the-maven-cargo-plugin/)
|
2016-02-08 04:58:55 -05:00
|
|
|
- [Introduction to Spring Data JPA](http://www.baeldung.com/2011/12/22/the-persistence-layer-with-spring-data-jpa/)
|
2013-07-14 07:21:30 -04:00
|
|
|
|
|
|
|
|
2013-07-02 06:54:41 -04:00
|
|
|
### Build the Project
|
|
|
|
```
|
|
|
|
mvn clean install
|
|
|
|
```
|
|
|
|
|
2013-12-18 05:48:44 -05:00
|
|
|
|
|
|
|
### Set up MySQL
|
|
|
|
```
|
|
|
|
mysql -u root -p
|
|
|
|
> CREATE USER 'tutorialuser'@'localhost' IDENTIFIED BY 'tutorialmy5ql';
|
|
|
|
> GRANT ALL PRIVILEGES ON *.* TO 'tutorialuser'@'localhost';
|
|
|
|
> FLUSH PRIVILEGES;
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2013-07-02 06:54:41 -04:00
|
|
|
### Use the REST Service
|
|
|
|
|
|
|
|
```
|
|
|
|
curl http://localhost:8080/spring-security-rest-full/foos
|
|
|
|
```
|