spring-data-commons
spring-data-commons copied to clipboard
Spring Data Commons. Interfaces and code shared between the various datastore specific implementations.
**[James Howe](https://jira.spring.io/secure/ViewProfile.jspa?name=jamesmhowe)** opened **[DATACMNS-1760](https://jira.spring.io/browse/DATACMNS-1760?redirect=false)** and commented When constructing a Querydsl predicate from request parameters, the source type is inspected to determine which parameter names to use, instead of the query...
not sure if this is the right repo to repot in. I was having a problem with the scanning finding 0 classes, turns out it was where my SpringBootApplication class...
How to disable QuerydslPredicateArgumentResolver,because I want to customize. ```java @Override public void addArgumentResolvers(List argumentResolvers) { argumentResolvers.add(0, beanFactory.getBean("querydslPredicateArgumentResolver", QuerydslPredicateArgumentResolver.class)); } ``` ```java public boolean supportsParameter(MethodParameter parameter) { ResolvableType type = ResolvableType.forMethodParameter(parameter);...
java version : 17 Spring data commons versions : 2.7.1 Use Case : I have a field with `ZonedDateTime` as type, and a mongodb codec for handling it. It work...
Replaces the Degraph based implementation with one based on ArchUnit and reenables the test. The test currently fails since the aot code causes cycles.
Both packages reference each other and we need to resolve this cycle. It requires likely updates to the configuration interfaces and an improved evaluation of the AOT processor class to...