Notice
Recent Posts
Recent Comments
Link
투케이2K
115. (spring/스프링) RequestHeader , RequestParam 사용해 http 요청 헤더 값 및 파라미터 값 확인 실시 본문
Spring
115. (spring/스프링) RequestHeader , RequestParam 사용해 http 요청 헤더 값 및 파라미터 값 확인 실시
투케이2K 2023. 1. 14. 08:12[개발 환경 설정]
개발 툴 : inteli j
개발 언어 : spring
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [POST] : Request Header 값 확인
// -----------------------------------------------------------------------------------------
@PostMapping("/post_request_header")
public String post_request_header(@RequestHeader Map<String, Object> requestHeader, @RequestParam Map<String, Object> param){
S_Log.d("\n");
S_Log.d("================================================");
S_Log.d("[CLASS] : "+String.valueOf(CLASS_NAME));
S_Log.d("-----------------------------------------");
S_Log.d("[METHOD] : "+String.valueOf("post_request_header"));
S_Log.d("-----------------------------------------");
S_Log.d("[INPUT] : [Header] : "+String.valueOf(requestHeader.toString()));
S_Log.d("-----------------------------------------");
S_Log.d("[INPUT] : [Param] : "+String.valueOf(param.toString()));
S_Log.d("================================================");
S_Log.d("\n");
/**
* // -----------------------------------------
* [호출 방법]
* // -----------------------------------------
* 1. 호출 방식 : POST
* // -----------------------------------------
* 2. 호출 방법 : http://localhost:7000/post_request_header
* // -----------------------------------------
* 3. 리턴 데이터 : Y : SUCCESS
* // -----------------------------------------
* */
// [리턴 반환]
return "Y : SUCCESS";
}
[결과 출력]
반응형
'Spring' 카테고리의 다른 글
117. (spring/스프링) [DELETE] DeleteMapping 사용해 http delete 요청 api 생성 실시 (0) | 2023.01.15 |
---|---|
116. (spring/스프링) [PUT] PutMapping 사용해 http put 요청 api 생성 실시 (0) | 2023.01.15 |
114. (spring/스프링) [유틸 파일] stringIsUrlParsing - String 문자열 데이터가 URL 형식으로 파싱 (0) | 2022.10.15 |
113. (spring/스프링) okhttp 사용해 post body json 요청 실시 (0) | 2022.10.11 |
112. (spring/스프링) okhttp 사용해 post 방식 query string 쿼리스트링 요청 실시 (0) | 2022.10.11 |
Comments