实体类(POJO)
1 | package org.code0.restController.model; |
Controller
1 | package org.code0.restController.controller; |
返回json
添加依赖
1 | <!-- jackson, RestController返回json格式数据依赖 --> |
访问: http://localhost:8080/testRestController/参数 或 http://localhost:8080/testRestController/参数.json
返回: {“name”:”jhon”,”text”:”参数”}
返回xml
不需要额外增加第三方依赖,只需在实体类上添加@XmlRootElement
注解即可。
1 | //该注解设置请求返回xml |
访问:http://localhost:8080/testRestController/xxx 或 http://localhost:8080/testRestController/xxx.xml
返回:
1 | <message> |
实体类上添加@XmlRootElement
注解后,默认返回xml
格式了,如果要返回json
,url就要加上.json
的后缀了。