Skip to content

Instantly share code, notes, and snippets.

@filiperdt
Created July 25, 2021 02:18
Show Gist options
  • Save filiperdt/745e7904e5b7723fa830ca80d08603d4 to your computer and use it in GitHub Desktop.
Save filiperdt/745e7904e5b7723fa830ca80d08603d4 to your computer and use it in GitHub Desktop.
Return enum in REST Spring
@GetMapping(value = "/foo")
@ResponseBody
public ResponseEntity<List<YourEnum>> listYourEnum() {
return new ResponseEntity<List<YourEnum>>(Arrays.asList(YourEnum.values()), HttpStatus.OK);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment