springboot 统一json返回格式,并设置http响应码

springboot 统一json返回格式 https://www.cnblogs.com/xiaqiuchu/p/14406255.html

springboot 统一返回格式并配置响应码

@RequestMapping("/")
    public ResponseEntity<?> index() {
        return new ResponseEntity<Object>(new JsonResult<Object>(articleService.selectPagination()), HttpStatus.OK);
    }

 

上一篇:SpringMvc 文件下载的两种方式


下一篇:Spring Boot之发送HTTP请求(RestTemplate详解)