I have the following response:
noResultsResponse.setMessage("No available models");
return ResponseEntity.status(404).body(noResultsResponse);
This works and returns 404
with the correct message.
But when I try to use a different status code, for an example return ResponseEntity.status(1001).body(noResultsResponse);
, it returns a 500
error code with the correct message.
Is there no way of setting up 4 digit status codes without actually making a status field in the response and return it as a 200
code?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…