Post

springframework.http.ResponseEntity

springframework.http.ResponseEntity

๐Ÿ”” ResponseEntity ๊ฐœ์š”
๐Ÿ”” ๋‹ค๋ฅธ ๋ฐฉ๋ฒ•๊ณผ ๋น„๊ต

What? Why?

์Šคํ”„๋ง 3 ๋ฒ„์ „๋ถ€ํ„ฐ ๋„์ž…๋˜์—ˆ์œผ๋ฉฐ, ์Šคํ”„๋ง MVC์—์„œ HTTP ์‘๋‹ต์„ ๋‹ค๋ฃจ๋Š” ์ฃผ์š” ํด๋ž˜์Šค ์ค‘ ํ•˜๋‚˜์ด๋‹ค. HTTP ์‘๋‹ต์˜ ์ „์ฒด ๋‚ด์šฉ์„ ์ œ์–ดํ•  ์ˆ˜ ์žˆ๋„๋ก ํ•ด์ฃผ๋ฉฐ, ์ด๋ฅผ ํ†ตํ•ด ๋‹ค์Œ๊ณผ ๊ฐ™์€ ์š”์†Œ๋“ค์„ ์„ค์ •ํ•  ์ˆ˜ ์žˆ๋‹ค.

  • ์ƒํƒœ ์ฝ”๋“œ (HTTP Status Code)
    200 OK, 404 Not Found, 500 Internal Server Error ๋“ฑ
  • ํ—ค๋” (Headers)
    ์‘๋‹ต ํ—ค๋”์— ํŠน์ • ๊ฐ’์„ ์ถ”๊ฐ€/์ˆ˜์ •
  • ๋ณธ๋ฌธ (Body)
    ์‹ค์ œ๋กœ ํด๋ผ์ด์–ธํŠธ์—๊ฒŒ ์ „๋‹ฌ๋  ๋ฐ์ดํ„ฐ
1
2
3
4
5
6
7
@GetMapping("/example")
public ResponseEntity<String> getExample() {
    String body = "Hello, World!";
    HttpHeaders headers = new HttpHeaders();
    headers.add("Custom-Header", "CustomValue");
    return new ResponseEntity<>(body, headers, HttpStatus.OK);
}

@ResponseBody

๊ฐ์ฒด๋ฅผ ์ง๋ ฌํ™”ํ•˜์—ฌ ๋ฐ˜ํ™˜ํ•˜๋Š” ์–ด๋…ธํ…Œ์ด์…˜์œผ๋กœ, ์ด๊ฒƒ๋งŒ ์‚ฌ์šฉํ•  ๊ฒฝ์šฐ ํ—ค๋”๋ฅผ ์œ ์—ฐํ•˜๊ฒŒ ์„ค์ •ํ•  ์ˆ˜ ์—†๋‹ค.
@ResopnseStatus๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ํ—ค๋”๋ฅผ ์„ค์ •ํ•  ์ˆ˜ ์žˆ์ง€๋งŒ, ์–ด๋…ธํ…Œ์ด์…˜์„ ๋ณ„๋„๋กœ ์ถ”๊ฐ€ํ•ด์•ผํ•˜๋Š” ๋‹จ์ ์ด ์žˆ๋‹ค.

1
2
3
4
5
6
@GetMapping("/accounts/{id}")
@ResponseStatus(HttpStatus.OK)
@ResponseBody
public Account handle() {
	// ...
}

WebFlux์˜ Mono, Flux

๋ฐ˜์‘ํ˜• ํ”„๋กœ๊ทธ๋ž˜๋ฐ์„ ์ง€์›ํ•˜๋Š” WebFlux๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒฝ์šฐ, Mono๋‚˜ Flux๋ฅผ ๋ฐ˜ํ™˜ ํƒ€์ž…์œผ๋กœ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋‹ค. ์ด๋Š” ๋น„๋™๊ธฐ ๋ฐ ๋…ผ๋ธ”๋กœํ‚น ๋ฐฉ์‹์œผ๋กœ HTTP ์‘๋‹ต์„ ์ฒ˜๋ฆฌํ•  ๋•Œ ์œ ์šฉํ•˜๋‹ค.

1
2
3
4
@GetMapping("/reactive")
public Mono<ResponseEntity<String>> getReactive() {
    return Mono.just(ResponseEntity.ok("Hello, Reactive World!"));
}

๋”ฐ๋ผ์„œ, SpringMVC ํ™˜๊ฒฝ์—์„œ๋Š” ResponseEntity๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒƒ์ด ๋ฐ”๋””๋Š” ๋ฌผ๋ก  ํ—ค๋”๋ฅผ ์ œ์–ดํ•˜๋Š”๋ฐ์— ๋” ์œ ์—ฐํ•˜๊ฒŒ ์กฐ์ž‘์ด ๊ฐ€๋Šฅํ•˜๋‹ค. ๋ฌผ๋ก  HTTP ์‘๋‹ต์„ ์„ธ๋ฐ€ํ•˜๊ฒŒ ์ œ์–ดํ•˜๋Š” ์ •๋„๊ฐ€ ์•„๋‹ˆ๋ฉด ResponseBody๋ฅผ ์‚ฌ์šฉํ•˜๊ฑฐ๋‚˜ RestController๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒƒ์ด ๋” ์ข‹์„ ์ˆ˜ ์žˆ๋‹ค.

์ž๋ฃŒ ์ถœ์ฒ˜

ChatGPT

This post is licensed under CC BY 4.0 by the author.