spring-data-commons icon indicating copy to clipboard operation
spring-data-commons copied to clipboard

Spring Data Commons. Interfaces and code shared between the various datastore specific implementations.

Results 241 spring-data-commons issues
Sort by recently updated
recently updated
newest added

**[Ales Justin](https://jira.spring.io/secure/ViewProfile.jspa?name=alesj)** opened **[DATACMNS-1176](https://jira.spring.io/browse/DATACMNS-1176?redirect=false)** and commented PropertyPath from Part(Tree) doesn't always directly map class's structure. e.g. in Hibernate Search (HS) Spring Data implementation we map class's HS fields `@Field`(name =...

type: enhancement
status: feedback-provided

**[kizimini](https://jira.spring.io/secure/ViewProfile.jspa?name=kizimini)** opened **[DATACMNS-1137](https://jira.spring.io/browse/DATACMNS-1137?redirect=false)** and commented classes: Dept{String name} User{String name, Dept dept} Address{String address, User user} Repository: findByUser_Dept_Name(String deptName) //correct findByUserDeptName(String deptName) //correct findByUserDept_Name(String deptName) //incorrect PropertyPath: PropertyPath.from("UserDept_Name", Address.class) //...

type: bug
in: mapping
in: repository
status: feedback-provided

**[Benjamin Schmeling](https://jira.spring.io/secure/ViewProfile.jspa?name=javatar81)** opened **[DATACMNS-1054](https://jira.spring.io/browse/DATACMNS-1054?redirect=false)** and commented When using Spring Data, the _Pageable_ and _Page_ interfaces are often part of a project's public API. If you extract your API into a...

type: dependency-upgrade
status: feedback-provided

**[Thomas Darimont](https://jira.spring.io/secure/ViewProfile.jspa?name=thomasd)** opened **[DATACMNS-1013](https://jira.spring.io/browse/DATACMNS-1013?redirect=false)** and commented Currently Spring Data Repositories support dynamic proxy based entity projections that expose persistent properties based on property declarations on an interface. In some occasions...

type: enhancement
status: feedback-provided

**[Kazuki Shimizu](https://jira.spring.io/secure/ViewProfile.jspa?name=kazuki43zoo)** opened **[DATACMNS-966](https://jira.spring.io/browse/DATACMNS-966?redirect=false)** and commented I'll suggest to add annotation that specify allowed sort properties to limit an injection as follow: ```java @Documented @Target(ElementType.PARAMETER) @Retention(RetentionPolicy.RUNTIME) public @interface AllowedSortProperties {...

in: core
type: enhancement
status: feedback-provided

**[Kirill Voronin](https://jira.spring.io/secure/ViewProfile.jspa?name=yoursdearboy)** opened **[DATACMNS-930](https://jira.spring.io/browse/DATACMNS-930?redirect=false)** and commented It will be nice to be able to configure some common `QuerydslBinderCustomizer` s for each repository in one place, probably as a bean(s). For...

type: documentation
in: core
type: enhancement
status: feedback-provided

**[shimikano](https://jira.spring.io/secure/ViewProfile.jspa?name=shimikano)** opened **[DATACMNS-1627](https://jira.spring.io/browse/DATACMNS-1627?redirect=false)** and commented While debugging some issues with type aliases, we noticed that `MappingContextTypeInformationMapper` is not actually initialized with the aliases of the `PersistentEntities` in the `MappingContext` given...

type: bug
in: core
status: feedback-provided

**[Yuki Yoshida](https://jira.spring.io/secure/ViewProfile.jspa?name=yuki%20yoshida)** opened **[DATACMNS-1404](https://jira.spring.io/browse/DATACMNS-1404?redirect=false)** and commented When we have below two entities.   ```java @Entity @EntityListeners(AuditingEntityListener.class) public class EntityWithCreatedBy { @Id @GeneratedValue private Integer id; @ManyToOne(fetch = FetchType.LAZY) @CreatedBy private User...

in: core
type: enhancement
status: feedback-provided

**[ft0907](https://jira.spring.io/secure/ViewProfile.jspa?name=ft0907)** opened **[DATACMNS-1623](https://jira.spring.io/browse/DATACMNS-1623?redirect=false)** and commented As long as the reference type is Predicate, it will directly enter the QuerydslPredicateArgumentResolver, which greatly reduces the ability of the Predicate type to customize...

in: core
type: enhancement
status: feedback-provided

**[Tadaya Tsuyukubo](https://jira.spring.io/secure/ViewProfile.jspa?name=tadaya)** opened **[DATACMNS-1494](https://jira.spring.io/browse/DATACMNS-1494?redirect=false)** and commented I would like to have flags to control registering default pageable and sort resolvers on _@EnableSpringDataWebSupport_. In my use case, I register a resolver...

status: declined