Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

java - Setting up a status code for a Response Entity

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Status codes are issued by a server in response to a client's request made to the server. The first digit of the status-code defines the class of response.

Refer to this for the valid status codes httpstatuses.com

Best way to set and return response from server:

return new ResponseEntity<String>(response, HttpStatus.OK);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...