「Spring」@RequestMappingのproducesでxmlタイプを指定する
書式
@RequestMapping(value = パス名, produces = “application/xml")
@RequestMapping(value = パス名, produces = MediaType.APPLICATION_XML_VALUE)
使用例1
@RequestMapping(value = "/getFile", produces = "application/xml") public String getFile() { return "<note><to>changfa</to></note>"; }
使用例2
@RequestMapping(value = "/getFile", produces = MediaType.APPLICATION_XML_VALUE) public String getFile() { return "<note><to>changfa</to></note>"; }