Created
July 25, 2021 02:18
-
-
Save filiperdt/745e7904e5b7723fa830ca80d08603d4 to your computer and use it in GitHub Desktop.
Return enum in REST Spring
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
@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