「Spring」httpレスポンスヘッダを指定するサンプル

2021年4月7日

書式
@RequestMapping(“/関数名")
public ResponseEntity<String>関数名()
使用例

@RequestMapping("/uerCreate")
public ResponseEntity<String>userCreate(){
  
   URI location =xxx;
   HttpHeaders resHeaders = new HttpHeaders();
   resHeaders.setLocation(location);
   resHeaders.set("cftResponse","cftValue");
   HttpStatus status = HttpStatus.NOT_FOUND;

   return new ResponseEntity<String>("this is a test",resHeaders,status);

}

 

SpringMVC

Posted by arkgame