spring-data-jpa-entity-graph icon indicating copy to clipboard operation
spring-data-jpa-entity-graph copied to clipboard

Spring Data JPA extension allowing full dynamic usage of EntityGraph on repositories

Results 10 spring-data-jpa-entity-graph issues
Sort by recently updated
recently updated
newest added

**What steps will reproduce the problem?** Steps to reproduce the behavior: I have an Entity with a Listener: ``` @Entity @EntityListeners(MyEntityUpdateListener.class) public class MyEntity { ... ``` and the Listener...

bug
missing-test-reproducing-the-issue

**What steps will reproduce the problem?** Steps to reproduce the behavior: 1. Write a Controller where a deferred value is returned. 2. Create a query to the repository insite the...

missing-test-reproducing-the-issue

**What steps will reproduce the problem?** 1. Define entities with a ManyToMany relationship using @JoinTable, like in the AJpaEntity example provided. 2. Attempt to fetch an instance of AJpaEntity using...

missing-test-reproducing-the-issue

For some reason specifying DynamicEntityGraph as a default one make `repository.findById(id: String)` fail with stackoverflow exception. Was unable to understand if it is a bug or I just misuse/misconfigured something....

missing-test-reproducing-the-issue

### What steps will reproduce the problem ? I'm not sure if there is an easy way to reproduce the issue since I don't face it in a local environment...

missing-test-reproducing-the-issue

**Issue Description:** A new method, `findBy(Specification spec, Function queryFunction)`, has been introduced in the JPA (since 3.0.x) repository interface called `JpaSpecificationExecutor`. This method enhances the flexibility of querying by allowing...

I am developing a set of custom spring repos with soft delete logic based on auth context and request params. I wanted to make the system consistent, so just like...

Related to https://github.com/Cosium/spring-data-jpa-entity-graph/issues/180 Test fails with Caused by: org.springframework.data.mapping.PropertyReferenceException: No property 'findRevisions' found for type 'Maker'

### What steps will reproduce the problem ? Steps to reproduce the behavior: 1. Set up a project using envers using @EnableEnversRepositories 2. Set repositoryFactoryBeanClass = EntityGraphJpaRepositoryFactoryBean.class 3. Spring context...

If I add `spring-data-jpa-entity-graph-generator` dependency, then the result XEntityGraph classes has no `jakarta.annotation.Generated` annotation upon them (in comparison to jpamodelgen). As a result, the [errorprone plugin](https://errorprone.info/) finds some errors within...