Skip to content

Commit a17e4bb

Browse files
committed
Follow through with the split of CRUD repository and sorting repository.
Closes #719 See spring-projects/spring-data-commons#2537
1 parent 74ecdb5 commit a17e4bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/springframework/data/r2dbc/repository/R2dbcRepository.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import org.springframework.data.repository.NoRepositoryBean;
1919
import org.springframework.data.repository.query.ReactiveQueryByExampleExecutor;
20+
import org.springframework.data.repository.reactive.ReactiveCrudRepository;
2021
import org.springframework.data.repository.reactive.ReactiveSortingRepository;
2122

2223
/**
@@ -27,4 +28,4 @@
2728
* @author Greg Turnquist
2829
*/
2930
@NoRepositoryBean
30-
public interface R2dbcRepository<T, ID> extends ReactiveSortingRepository<T, ID>, ReactiveQueryByExampleExecutor<T> {}
31+
public interface R2dbcRepository<T, ID> extends ReactiveCrudRepository<T, ID>, ReactiveSortingRepository<T, ID>, ReactiveQueryByExampleExecutor<T> {}

0 commit comments

Comments
 (0)