How to Make a Request Body Property 'required' in Spring Boot - Code Snippet
I was struggling with a codebase that came with an almost-typeless request parameter type, in Java Spring Boot.
The controller header looks like this:
@RequestMapping("/my-end-point")
@ResponseBody
public Map<String, Object> doSomething(@RequestPara...
andrewbkim.dev1 min read