Relative Content

Tag Archive for springspring-bootspring-webflux

Spring Boot Webflux (v3.1.0): `@ControllerAdvice` Handle Multi-Status Response + Exception

I’m trying to determine if using @ControllerAdvice is appropriate to use to handle request that could have multiple http statuses (HTTP 207 Multi-Status). I have an existing API that includes several request that uses HTTP status 207. These particular request interact with an another application API so we capture that of those request and pass it along with the response status from our service. I’m wondering can @ControllerAdvice handle scenarios like this.

Spring Boot Webflux (v3.1.0): `@ControllerAdvice` Handle Multi-Status Response + Exception

I’m trying to determine if using @ControllerAdvice is appropriate to use to handle request that could have multiple http statuses (HTTP 207 Multi-Status). I have an existing API that includes several request that uses HTTP status 207. These particular request interact with an another application API so we capture that of those request and pass it along with the response status from our service. I’m wondering can @ControllerAdvice handle scenarios like this.

Spring Boot Webflux (v3.1.0): `@ControllerAdvice` Handle Multi-Status Response + Exception

I’m trying to determine if using @ControllerAdvice is appropriate to use to handle request that could have multiple http statuses (HTTP 207 Multi-Status). I have an existing API that includes several request that uses HTTP status 207. These particular request interact with an another application API so we capture that of those request and pass it along with the response status from our service. I’m wondering can @ControllerAdvice handle scenarios like this.

Spring Boot Webflux (v3.1.0): `@ControllerAdvice` Handle Multi-Status Response + Exception

I’m trying to determine if using @ControllerAdvice is appropriate to use to handle request that could have multiple http statuses (HTTP 207 Multi-Status). I have an existing API that includes several request that uses HTTP status 207. These particular request interact with an another application API so we capture that of those request and pass it along with the response status from our service. I’m wondering can @ControllerAdvice handle scenarios like this.

Spring Boot Webflux (v3.1.0): `@ControllerAdvice` Handle Multi-Status Response + Exception

I’m trying to determine if using @ControllerAdvice is appropriate to use to handle request that could have multiple http statuses (HTTP 207 Multi-Status). I have an existing API that includes several request that uses HTTP status 207. These particular request interact with an another application API so we capture that of those request and pass it along with the response status from our service. I’m wondering can @ControllerAdvice handle scenarios like this.

Issue with Spring WebFlux Endpoint not Returning Server-Sent Events (SSE) Data

Description:
I am developing a Spring WebFlux application that integrates with a third-party API. This API returns data in the text/event-stream format, specifically for streaming chat messages. I have set up an endpoint in my application to forward requests to this API using WebClient and handle the SSE responses.

Webflux 401 for POST, but 200 for GET

I’m trying to convert a Spring Boot Web application to Webflux. Authentication is working for GET endpoints, but I can’t get past a 401 response on POST endpoints. I’m using the exact same postman calls that 1) worked before converting, and 2) works if I switch the POST to GET in the same request.