* move security content from spring-security-rest-full * swagger update * move query language to new module * rename spring-security-rest-full to spring-rest-full
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| =========
 | |
| 
 | |
| ## 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: 
 | |
| - [REST Pagination in Spring](http://www.baeldung.com/2012/01/18/rest-pagination-in-spring/)
 | |
| - [HATEOAS for a Spring REST Service](http://www.baeldung.com/2011/11/13/rest-service-discoverability-with-spring-part-5/)
 | |
| - [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/)
 | |
| - [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/)
 | |
| - [Introduction to Spring Data JPA](http://www.baeldung.com/2011/12/22/the-persistence-layer-with-spring-data-jpa/)
 | |
| - [Project Configuration with Spring](http://www.baeldung.com/2012/03/12/project-configuration-with-spring/)
 | |
| - [Metrics for your Spring REST API](http://www.baeldung.com/spring-rest-api-metrics)
 | |
| - [Spring RestTemplate Tutorial](http://www.baeldung.com/rest-template)
 | |
| - [Bootstrap a Web Application with Spring 4](http://www.baeldung.com/bootstraping-a-web-application-with-spring-and-java-based-configuration)
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| ### 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
 | |
| ```
 |