26 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			26 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| 
								 | 
							
								=========
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								## Spring Data JPA Example Project
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								### Relevant Articles: 
							 | 
						|||
| 
								 | 
							
								- [Spring JPA – Multiple Databases](https://www.baeldung.com/spring-data-jpa-multiple-databases)
							 | 
						|||
| 
								 | 
							
								- [Spring Data JPA – Adding a Method in All Repositories](https://www.baeldung.com/spring-data-jpa-method-in-all-repositories)
							 | 
						|||
| 
								 | 
							
								- [An Advanced Tagging Implementation with JPA](https://www.baeldung.com/jpa-tagging-advanced)
							 | 
						|||
| 
								 | 
							
								- [Spring Data Annotations](https://www.baeldung.com/spring-data-annotations)
							 | 
						|||
| 
								 | 
							
								- [Spring Data Java 8 Support](https://www.baeldung.com/spring-data-java-8)
							 | 
						|||
| 
								 | 
							
								- [A Simple Tagging Implementation with JPA](https://www.baeldung.com/jpa-tagging)
							 | 
						|||
| 
								 | 
							
								- [Spring Data Composable Repositories](https://www.baeldung.com/spring-data-composable-repositories)
							 | 
						|||
| 
								 | 
							
								- [Query Entities by Dates and Times with Spring Data JPA](https://www.baeldung.com/spring-data-jpa-query-by-date)
							 | 
						|||
| 
								 | 
							
								- [DDD Aggregates and @DomainEvents](https://www.baeldung.com/spring-data-ddd)
							 | 
						|||
| 
								 | 
							
								- [Spring Data – CrudRepository save() Method](https://www.baeldung.com/spring-data-crud-repository-save)
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								### Eclipse Config 
							 | 
						|||
| 
								 | 
							
								After importing the project into Eclipse, you may see the following error:  
							 | 
						|||
| 
								 | 
							
								"No persistence xml file found in project"
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								This can be ignored: 
							 | 
						|||
| 
								 | 
							
								- Project -> Properties -> Java Persistance -> JPA -> Error/Warnings -> Select Ignore on "No persistence xml file found in project"
							 | 
						|||
| 
								 | 
							
								Or: 
							 | 
						|||
| 
								 | 
							
								- Eclipse -> Preferences - Validation - disable the "Build" execution of the JPA Validator 
							 | 
						|||
| 
								 | 
							
								
							 |