Guest User

Untitled

a guest
Apr 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. {
  2. "firstname": "john",
  3. "lastname": "doh"
  4. }
  5.  
  6. public class PersonController {
  7. @PostMapping("/post")
  8. public void post(Map<String, String> params) {
  9. }
  10. }
  11.  
  12. @PostMapping("/post")
  13. public void post2(List<Map<String, String>> params) {
  14. }
Add Comment
Please, Sign In to add comment