Skip to content

Instantly share code, notes, and snippets.

@b1a9id
Created June 21, 2018 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save b1a9id/f8fced9c18a7df7586e81adee85c4e5c to your computer and use it in GitHub Desktop.
Save b1a9id/f8fced9c18a7df7586e81adee85c4e5c to your computer and use it in GitHub Desktop.
SampleController
@RestController
@RequestMapping("/sample")
public class SampleController {
@InitBinder("SampleGet")
public void initBinder(WebDataBinder binder) {
binder.addCustomFormatter(new TestFormatter());
}
@GetMapping("{id}")
public Map<String, String> get(Model model, @PathVariable("id") Integer id) {
...
}
@GetMapping
public SampleGetRequest list(@ModelAttribute("SampleGet") SampleGetRequest request) {
return request;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment