Spring Projects Issues
Spring Projects Issues
**[Dmitriy Korobskiy](https://jira.spring.io/secure/ViewProfile.jspa?name=dkroot)** opened **[DATAJPA-1092](https://jira.spring.io/browse/DATAJPA-1092?redirect=false)** and commented Some databases: notably MS SQL and MySQL (but not Oracle) support SPs returning result sets (one or multiple) via simple SELECTs. In MS Transact-SQL...
**[Milan Milanov](https://jira.spring.io/secure/ViewProfile.jspa?name=milanov)** opened **[DATAJPA-1643](https://jira.spring.io/browse/DATAJPA-1643?redirect=false)** and commented I'm using the spring boot starter JPA version 2.2.1 RELEASE, which pulls the spring data JPA project with the same dependency. I'd like to...
**[Jens Schauder](https://jira.spring.io/secure/ViewProfile.jspa?name=schauder)** opened **[DATAJPA-1635](https://jira.spring.io/browse/DATAJPA-1635?redirect=false)** and commented `PagedExecution.count` contains the following logic: ```java List totals = repositoryQuery.createCountQuery(accessor).getResultList(); return (totals.size() == 1 ? CONVERSION_SERVICE.convert(totals.get(0), Long.class) : totals.size()); ``` Which doesn't make sense...
**[cancel](https://jira.spring.io/secure/ViewProfile.jspa?name=pwnz)** opened **[DATAJPA-1637](https://jira.spring.io/browse/DATAJPA-1637?redirect=false)** and commented Hello, im use JpaSpecificationExecutor. How i can cache these query with hibernate second level cache. `@QueryHints` does not work `@Override` `@QueryHints`(value = \{ `@QueryHint`(name =...
**[Martin Ždila](https://jira.spring.io/secure/ViewProfile.jspa?name=m.zdila)** opened **[DATAJPA-744](https://jira.spring.io/browse/DATAJPA-744?redirect=false)** and commented Given entities and repository: ```java @Entity public final class Partner { @Id private String id; @OneToMany(mappedBy = "partner", fetch = FetchType.LAZY) private List merchants;...
**[Michael Wiles](https://jira.spring.io/secure/[email protected])** opened **[DATAJPA-930](https://jira.spring.io/browse/DATAJPA-930?redirect=false)** and commented As far as I am aware (and I apologise if I am mistaken) there is currently no way to add a distinct to a...
**[Cadell Christo](https://jira.spring.io/secure/ViewProfile.jspa?name=cadellchristo)** opened **[DATAJPA-1077](https://jira.spring.io/browse/DATAJPA-1077?redirect=false)** and commented Hi guys the stackoverflow question sums up my problem entirely. i just wanted to know if there was another way to achieve this or...
**[Simon Endele](https://jira.spring.io/secure/ViewProfile.jspa?name=sendele)** opened **[DATAJPA-1119](https://jira.spring.io/browse/DATAJPA-1119?redirect=false)** and commented In a spontaneous conversation with Oliver Gierke at the JAX 2017 in Mainz recently we came up with the idea of using projections together...
**[iron2414](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER50833)** opened **[DATACMNS-1849](https://jira.spring.io/browse/DATACMNS-1849?redirect=false)** and commented ## Observed vs. expected behavior When I'm trying to create a User repository, which is extending ReactiveCrudRepository and ReactiveQuerydslPredicateExecutor, then it says ```java org.springframework.data.mapping.PropertyReferenceException: No...
**[Sanghyuk Jung](https://jira.spring.io/secure/ViewProfile.jspa?name=benelog)** opened **[DATAJDBC-319](https://jira.spring.io/browse/DATAJDBC-319?redirect=false)** and commented In MyBatis, Dynamic sql is supported by `@SelectProvider` http://kamalmeet.com/java/mybatis-using-selectprovider-and-resultmap/ ( updated link) It would be more convenient if a similar feature is in Spring...