Spring Projects Issues
Spring Projects Issues
**[Seshu Pasam](https://jira.spring.io/secure/ViewProfile.jspa?name=spasam)** opened **[DATACMNS-541](https://jira.spring.io/browse/DATACMNS-541?redirect=false)** and commented Am using QueryDslPredicateExecutor. What I really need is following method: Slice\ findAll(Predicate predicate, Pageable pageable); The reason I don't want to use findAll that...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** opened **[DATACMNS-293](https://jira.spring.io/browse/DATACMNS-293?redirect=false)** and commented When working with repositories there might be use cases that involve the queries to be executed for that repository to contain some kind of...
**[justin mccune](https://jira.spring.io/secure/[email protected])** opened **[DATACMNS-1213](https://jira.spring.io/browse/DATACMNS-1213?redirect=false)** and commented Many think that it's great to use the name of the method to infer the SQL for a query on a repository. However, often...
**[John Butler](https://jira.spring.io/secure/ViewProfile.jspa?name=dancerjohn)** opened **[DATACMNS-1381](https://jira.spring.io/browse/DATACMNS-1381?redirect=false)** and commented Currently the **MappingMongoConverter** makes a static call to **CollectionFactory.createCollection** and **CollectionFactory.createMap**. And currently **CollectionFactory** does not support any of the Guava Immutable collection. Until...
**[Réda Housni Alaoui](https://jira.spring.io/secure/ViewProfile.jspa?name=reda-alaoui)** opened **[DATACMNS-1752](https://jira.spring.io/browse/DATACMNS-1752?redirect=false)** and commented We use: * Spring Data Commons 2.3.0 * Spring Data JPA 2.3.0 * Spring HATEOAS 1.1.0 `HateoasPageableHandlerMethodArgumentResolver` is registered in the Spring context....
**[Ruben Gees](https://jira.spring.io/secure/ViewProfile.jspa?name=rubengees)** opened **[DATACMNS-1611](https://jira.spring.io/browse/DATACMNS-1611?redirect=false)** and commented We get an error when trying to return a Vavr collection from a JpaRepository containing only parts of the object. One example of such...
**[Ben Madore](https://jira.spring.io/secure/ViewProfile.jspa?name=madorb2)** opened **[DATACMNS-1223](https://jira.spring.io/browse/DATACMNS-1223?redirect=false)** and commented If i had an interface with method: ```java public List findByFirstNameAndLastNameAndAgeGreaterThan(String firstName, String lastName, Int age); ``` Can I create an alias of this,...
**[Wyatt Smith](https://jira.spring.io/secure/ViewProfile.jspa?name=wyatt)** opened **[DATACMNS-1517](https://jira.spring.io/browse/DATACMNS-1517?redirect=false)** and commented Here is an example with the bug: https://github.com/wyattjsmith1/SpringDataBug When this runs, there is an `IndexOutOfBoundsException`. This is caused by kotlin's synthetic constructor. I believe...
**[Lovro Pandžić](https://jira.spring.io/secure/ViewProfile.jspa?name=lpandzic)** opened **[DATACMNS-553](https://jira.spring.io/browse/DATACMNS-553?redirect=false)** and commented Add a delete method to `QueryDslPredicateExecutor` that accepts `Predicate` as an argument --- **Issue Links:** - [DATAJPA-954](https://jira.spring.io/browse/DATAJPA-954) Delete by Predicate (_**"is depended on by"**_)
**[Andrei Ivanov](https://jira.spring.io/secure/ViewProfile.jspa?name=shadow)** opened **[DATACMNS-894](https://jira.spring.io/browse/DATACMNS-894?redirect=false)** and commented Trying to use the auditing feature in a multi-module project I've reached a limit. - module A ```java public class User implements Serializable {...