私はRESTfulなサービスとその実装を春3に初めて導入しました。クライアントがサーバーに新しいリソースを作成したときにタイプを返すベストプラクティスについて意見したいと思います。Spring 3 POSTでのRESTfulリターン
@RequestMapping(method = RequestMethod.POST,
value = "/organisation",
headers = "content-type=application/xml")
@ResponseStatus(HttpStatus.CREATED)
public ??? createOrganisation(@RequestBody String xml)
{
StreamSource source = new StreamSource(new StringReader(xml));
Organisation organisation = (Organisation) castorMarshaller.unmarshal(source);
// save
return ???;
}
これは役立つでしょうhttp://stackoverflow.com/questions/12837907/what-to-return-if-spring-mvc-controller-method-doesnt-return-value – Xiangyu