如何使用Spring Boot支持json和html响应

时间:2015-06-10 12:28:24

标签: angularjs spring spring-boot restful-architecture

我想将数据发送到移动设备(使用json)和web(使用html),我使用Spring启动。我希望获得与facebook(graph.facebook.com和facebook.com)和twitter(api.twitter.com和twitter.com)使用的类似架构和功能。我也使用Angular.js作为Web框架。

1 个答案:

答案 0 :(得分:1)

没有什么能阻止你制作两个不同的实现(json,html)并从同一个URL提供它。只需使用正确的Consumable Media TypesProducible Media Types例如:

@Controller
@RequestMapping(value = "/pets/{petId}", method = RequestMethod.GET, produces="application/json")
@ResponseBody
public Pet getPet(@PathVariable String petId, Model model) {
    // implementation omitted
}