Created
October 16, 2018 13:48
-
-
Save Kamilnaja/9e677b224355a05a7ccd7ae3e632ccdb to your computer and use it in GitHub Desktop.
Spring - return xml data from string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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