Here is a gist where you don't use exceptions to return non 200 responses:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RequestMapping("/{surveyId}") | |
public Survey findSurvey(@PathVariable String surveyId, HttpServletResponse response) { | |
log.info("Querying survey {}", surveyId); | |
Survey survey = repository.get(surveyId); | |
if (survey == null) { | |
log.warn("Survey {} was not found!", surveyId); | |
response.setStatus(404); | |
} | |
return survey; | |
} |
A few things to note from this snippet:
- This is a Spring Boot implementation (Boot makes things so much simple)
- The HttpServletResponse is injected by Boot (Spring MVC), no need of additional setup.
- Notice that the body return is null already, so the non 200 response makes more sense.
No comments:
Post a Comment