Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created October 16, 2018 13:48
Show Gist options
  • Save Kamilnaja/9e677b224355a05a7ccd7ae3e632ccdb to your computer and use it in GitHub Desktop.
Save Kamilnaja/9e677b224355a05a7ccd7ae3e632ccdb to your computer and use it in GitHub Desktop.
Spring - return xml data from string
@ResponseBody
@RequestMapping(
method = RequestMethod.GET,
value="test",
produces = MediaType.APPLICATION_XML_VALUE
)
public ResponseEntity<String>testXML(){
return ResponseEntity.ok("<xml></xml>); // inside use string creating xml data
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment