标签: spring-boot
我正在使用Spring boot开发一个应用程序。现在我已经开发了API,我想返回API的JSON输出。那么我该如何创建响应类&将它转换为JSON?它是普通类还是我必须为每个API创建一个响应类?
答案 0 :(得分:3)
假设您正在使用@RequestMapping创建一个Spring引导Web应用程序,您可以只返回您的对象,Spring会自动将它们转换为JSON。如果您希望包含标头或修改为HTTPStatus代码
我建议您查看the spring boot starter guide for RESTful webservices