Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Advice
0 votes
2 replies
60 views

I have a workflow that I need to asynchronously cleanup after - without losing the completion value or failure state. In essence I need an onComplete() that returns a completion. In Java's ...
Score of 2
1 answer
148 views

In Spring WebFlux, when working with reactive streams , why is it recommended to return a Publisher (like Mono.error()) instead of throwing an exception directly within a stream? I saw this question ...
Advice
0 votes
1 replies
82 views

I'm working with Spring Data R2DBC in a reactive application and noticed that it doesn't support features like lazy loading, cascading operations, or dirty checking, which are commonly found in JPA ...
Score of 3
2 answers
148 views

I'm trying to implement a ViewModel that highlights changes as they happen coming from a external device. I have a working valueObservable that triggers on each change. I want to highlight each ...
Score of 0
2 answers
135 views

I'm working with Spring Data R2DBC and am curious about why it doesn't support features like lazy loading, cascading operations, or dirty checking, which are commonly used in JPA. Could someone ...
Score of 2
1 answer
114 views

In doFinally have printed the signal type to finally verify that it was a cancellation (CANCEL). However, this is not captured as part of doOnError as technically cancellation is not part of error. ...
Score of 0
1 answer
109 views

I'm experiencing a confusing timing issue with RxJava's Maybe operators in a high-throughput service (40 TPS) with concurrent execution. I have two classes that log execution times, but they're ...
Score of 1
1 answer
43 views

public Mono<String> queryValidation(String connectionId, String query) { return connectionConfigRepository.findByConnectionId(connectionId) .switchIfEmpty(Mono.error(new ...
Score of 1
0 answers
43 views

I'm not good at English, so I used a translator, so please understand that the sentences may be strange. I'm learning Spring WebFlux. When a request entering a controller, requests are received on a ...
Score of 2
1 answer
205 views

I have already gone through https://projectreactor.io/docs/core/release/reference/apdx-howtoReadMarbles.html. But I cant seem to understand, how this would map to here. Where does subscribe, ...
Score of 0
0 answers
47 views

I have a spring web flux based application, written in kotlin I am adding few information in reactor context by using web filter. I also have logging information which I set in MDCContext but I am ...
Score of 1
1 answer
374 views

I am having trouble understanding how to cache Reactive streams using the spring-data-starter-cache library. From tutorials such as https://www.baeldung.com/spring-webflux-cacheable, I see that they ...
Score of 2
1 answer
77 views

I have a Spring Boot microservice that provides non-blocking APIs for creating and managing entities called Product. The services uses a MongoDB. For design purposes, each Product needs to have a ...
Score of 0
1 answer
97 views

I am trying a trivial test with a basic Spring Boot 3.4 application and the reactive MS Server driver r2dbc-mssql. repo.save(User.builder().name("Joe Smoe").build()) .doOnNext(...
Score of 1
0 answers
57 views

Consider I have a reactive, push-style API such as Files.walkFileTree() from NIO.2. Now, I want to transform this API to produce a lazy sequence of items (Sequence<T>) instead. This is fully ...

15 30 50 per page
1
2 3 4 5
384