Newbie question ... I am creating my first Spring Boot restful support service. For my calm service design, some data should be returned in the response header.
How to set response header values inside a controller class method?
From the spring documentation:
@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); }
Source: https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/http/ResponseEntity.html
HttpServletResponse. API- Servlet, . ResponseEntity HttpEntity.
HttpServletResponse
HttpEntity
HttpHeaders headers = new HttpHeaders(); headers.add("1", "uno"); return new ResponseEntity<>(headers, HttpStatus.OK);
, . , .
, , .
:
@RequestMapping(value="/car/{carId}", method = RequestMethod.Get) @ResponseBody public Car getCarById(@PathVariable("carId") String Id, HttpServletResponse response) { response.setHeader("X-Special-Header", myCar.getEcoLabel()); //get the car return myCar; }
, .
http://forum.spring.io/forum/spring-projects/web-services/102652-setting-header-values-with-spring-rest-controller
Source: https://habr.com/ru/post/1681641/More articles:Is it possible to use ngForIn in angular 4? - angularKotlin Kapt: java.lang.IllegalStateException: endPosTable already installed - javaGoogle xrome потерял фокус после всплывающего окна проверки подлинности Windows - google-chromemultiple lines for a row in pandas python dataframe - numpyHow to count visible "li" in search list - javascriptDelete during iteration std :: vector (indirectly) - c ++Is it possible to collect code coverage data if the code coverage tool is not an entry point? - c #automatically creates OpenAPI json file in Visual Studio 2017 - azureIs there a way to hibernate in a docker container - dockerAlign two lines (char to char) until the first inconsistency using python - pythonAll Articles