「Spring MVC」@RestControllerを使ってコントローラでXMLを返すサンプル
構文
@RequestMapping(value = “/値", produces = “application/xml")
@RequestMappingのproducesを指定してXMLを返します。
使用例
@RestController public class ApiController { @RequestMapping(value = "/test", produces = "application/xml") public String test() { 処理コード return "<user><addr>山田</addr></user>"; } }
コンテンツタイプは@RequestMappingのproducesで指定します。