Fixes raw use of JpaSpecificationExecutor in docs.
`JpaSpecificationExecutor` was being used without a type being specified. This commit fixes that. Original pull request #2159
This commit is contained in:
committed by
Jens Schauder
parent
5517570ca8
commit
aa5f7f8661
@@ -789,7 +789,7 @@ Spring Data JPA takes the concept of a specification from Eric Evans' book, "`Do
|
||||
|
||||
[source, java]
|
||||
----
|
||||
public interface CustomerRepository extends CrudRepository<Customer, Long>, JpaSpecificationExecutor {
|
||||
public interface CustomerRepository extends CrudRepository<Customer, Long>, JpaSpecificationExecutor<Customer> {
|
||||
…
|
||||
}
|
||||
----
|
||||
|
||||
Reference in New Issue
Block a user