我想将数据发送到移动设备(使用json)和web(使用html),我使用Spring启动。我希望获得与facebook(graph.facebook.com和facebook.com)和twitter(api.twitter.com和twitter.com)使用的类似架构和功能。我也使用Angular.js作为Web框架。
答案 0 :(得分:1)
没有什么能阻止你制作两个不同的实现(json,html)并从同一个URL提供它。只需使用正确的Consumable Media Types或Producible Media Types例如:
@Controller
@RequestMapping(value = "/pets/{petId}", method = RequestMethod.GET, produces="application/json")
@ResponseBody
public Pet getPet(@PathVariable String petId, Model model) {
// implementation omitted
}