如何在Spring Boot Rest服务方法中设置响应头值
问题描述
新手问题...我正在构建我的第一个Spring Boot Restful服务.我的静态服务设计要求在响应头中返回一些数据.
推荐答案
来自Spring文档
@RequestMapping("/handle") public ResponseEntity<String> handle() { URI location = ...; HttpHeaders responseHeaders = new HttpHeaders(); responseHeaders.setLocation(location); responseHeaders.set("MyResponseHeader", "MyValue"); return new ResponseEntity<String>("Hello World", responseHeaders, HttpStatus.CREATED); // 或者 return ResponseEntity.status(HttpStatus.CREATED).headers(responseHeaders) .body("Hello World"); }
标签:头值,Spring,Boot,Rest,ResponseEntity,responseHeaders From: https://www.cnblogs.com/lizm166/p/16607566.html