| 
									
										
										
										
											2013-06-03 17:54:58 +03:00
										 |  |  | ========= | 
					
						
							| 
									
										
										
										
											2013-07-02 13:54:41 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-25 19:39:04 +03:00
										 |  |  | ## REST Example Project with Spring
 | 
					
						
							| 
									
										
										
										
											2013-07-02 13:54:41 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-28 12:37:34 +03:00
										 |  |  | ### Courses
 | 
					
						
							|  |  |  | The "REST With Spring" Classes: http://bit.ly/restwithspring | 
					
						
							| 
									
										
										
										
											2016-06-28 12:38:19 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-12 17:02:35 +03:00
										 |  |  | The "Learn Spring Security" Classes: http://github.learnspringsecurity.com | 
					
						
							| 
									
										
										
										
											2013-07-02 13:54:41 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-14 14:21:30 +03:00
										 |  |  | ### Relevant Articles: 
 | 
					
						
							| 
									
										
										
										
											2018-05-02 13:11:09 +05:30
										 |  |  | - [Integration Testing with the Maven Cargo plugin](http://www.baeldung.com/integration-testing-with-the-maven-cargo-plugin) | 
					
						
							| 
									
										
										
										
											2018-05-06 19:15:23 +05:30
										 |  |  | - [Project Configuration with Spring](http://www.baeldung.com/project-configuration-with-spring) | 
					
						
							| 
									
										
										
										
											2016-02-10 13:42:54 +02:00
										 |  |  | - [Metrics for your Spring REST API](http://www.baeldung.com/spring-rest-api-metrics) | 
					
						
							| 
									
										
										
										
											2018-12-15 05:12:54 +08:00
										 |  |  | - [Spring Security Expressions - hasRole Example](https://www.baeldung.com/spring-security-expressions-basic) | 
					
						
							| 
									
										
										
										
											2017-04-18 22:20:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-14 14:21:30 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-02 13:54:41 +03:00
										 |  |  | ### Build the Project
 | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | mvn clean install | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-18 12:48:44 +02: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 13:54:41 +03:00
										 |  |  | ### Use the REST Service
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``` | 
					
						
							| 
									
										
										
										
											2018-07-17 13:26:01 -03:00
										 |  |  | curl http://localhost:8082/spring-rest-full/auth/foos | 
					
						
							| 
									
										
										
										
											2013-07-02 13:54:41 +03:00
										 |  |  | ``` |