Guest User

Untitled

a guest
Oct 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @ResponseBody
  2. @RequestMapping(
  3. method = RequestMethod.GET,
  4. value="test",
  5. produces = MediaType.APPLICATION_XML_VALUE
  6. )
  7. public ResponseEntity<String>testXML(){
  8. return ResponseEntity.ok("<xml></xml>); // inside use string creating xml data
  9. }
Add Comment
Please, Sign In to add comment