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
R2DBC support is increasingly available in Spring projects, especially for reactive, non-blocking database interactions. Are you considering implementing R2DBC in a specific part of your project, or evaluating it for potential future use?
The text was updated successfully, but these errors were encountered:
I can have a look, I think it should be possible, as there is a DatabaseClient supporting the criteria-API.
Would you expect to get something like:
Flux<DataRecord> getDataRecords(PageRequestDtorequest) {
// Convert to page-request and return page-content as Flux
}
or
Mono<CollectionModel<DtoDataRecord>> getDataRecords(PageRequestDtorequest) {
// Convert to page-request to HATEOS collection-model and return as Mono
}
R2DBC support is increasingly available in Spring projects, especially for reactive, non-blocking database interactions. Are you considering implementing R2DBC in a specific part of your project, or evaluating it for potential future use?
The text was updated successfully, but these errors were encountered: