625 B
625 B
65.1. 编写一个JSON REST服务
在Spring Boot应用中,任何Spring @RestController
默认应该渲染为JSON响应,只要classpath下存在Jackson2。例如:
@RestController
public class MyController {
@RequestMapping("/thing")
public MyThing thing() {
return new MyThing();
}
}
只要MyThing能够通过Jackson2序列化(比如,一个标准的POJO或Groovy对象),localhost:8080/thing默认响应一个JSON表示。有时在一个浏览器中你可能看到XML响应因为浏览器倾向于发送XML 响应头。