23 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ## Spring Data JPA - Query
 | |
| 
 | |
| This module contains articles about querying data using Spring Data JPA 
 | |
| 
 | |
| ### Relevant Articles: 
 | |
| - [The Exists Query in Spring Data](https://www.baeldung.com/spring-data-exists-query)
 | |
| - [Customizing the Result of JPA Queries with Aggregation Functions](https://www.baeldung.com/jpa-queries-custom-result-with-aggregation-functions)
 | |
| - [Limiting Query Results With JPA and Spring Data JPA](https://www.baeldung.com/jpa-limit-query-results)
 | |
| - [Sorting Query Results with Spring Data](https://www.baeldung.com/spring-data-sorting)
 | |
| - [Spring Data JPA Query by Example](https://www.baeldung.com/spring-data-query-by-example)
 | |
| - [JPA Join Types](https://www.baeldung.com/jpa-join-types)
 | |
| - [Spring Data JPA and Named Entity Graphs](https://www.baeldung.com/spring-data-jpa-named-entity-graphs)
 | |
| - More articles: [[more -->]](../spring-data-jpa-query-2)
 | |
| 
 | |
| ### 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 
 |