Affects: 5.2.1.RELEASE
in org.springframework.http.server.reactive.ServerHttpResponse we have the following method :
boolean setStatusCode(@Nullable HttpStatus status);
that is supposed to allow us to set the http status code for the response. The problem is that we can't use a simple int value and we have to pass through HttpStatus that cannot resolve non-standard Http status codes (498 in my case)
I've already asked on SO and apparently there is no way to make this work in the current release ?
Affects: 5.2.1.RELEASE
in
org.springframework.http.server.reactive.ServerHttpResponsewe have the following method :boolean setStatusCode(@Nullable HttpStatus status);that is supposed to allow us to set the http status code for the response. The problem is that we can't use a simple int value and we have to pass through HttpStatus that cannot resolve non-standard Http status codes (498 in my case)
I've already asked on SO and apparently there is no way to make this work in the current release ?