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.
1