You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Spring Data 3 JpaRepository does not extend the new interfaces ListCrudRepository/ListPagingAndSortingRepository but MongoRepository does. Was this forgotten?
Currently, it looks like this:
Both JpaRepository and MongoRepository use covariant return types and return List anyway.
JpaRepositoryImplementation and SimpleJpaRepository are also extending CrudRepository and PagingAndSortingRepository not List[CrudRepository|PagingAndSortingRepository].
I put this issue here in the Commons project because it's related to several projects ...
The text was updated successfully, but these errors were encountered:
In Spring Data 3
JpaRepository
does not extend the new interfacesListCrudRepository
/ListPagingAndSortingRepository
butMongoRepository
does. Was this forgotten?Currently, it looks like this:
Both
JpaRepository
andMongoRepository
use covariant return types and returnList
anyway.JpaRepositoryImplementation
andSimpleJpaRepository
are also extendingCrudRepository
andPagingAndSortingRepository
notList[CrudRepository|PagingAndSortingRepository]
.I put this issue here in the Commons project because it's related to several projects ...
The text was updated successfully, but these errors were encountered: