Advertisement
Guest User

Untitled

a guest
May 5th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class MyDTO {
  2. @NotEmpty
  3. private String isKiosk;
  4. ...
  5. }
  6.  
  7. http://localhost:1234/mvc/controllerUrl?isKiosk=false
  8.  
  9. @RequestMapping(method = RequestMethod.GET, produces = APPLICATION_JSON)
  10. @ResponseBody
  11. public ResponseEntity<List<?>> getRequestSupportKludge(@Valid final MyDTO myDTO, BindingResult bindingResult) {
  12. ...
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement