Post

[Spring_Boot] 웹 응답의 3가지 요소 (1)

웹 응답의 3가지 요소

  1. 상태 라인에서 상태 코드
  2. Header 만든 뒤, body가 어떠한 content type 인지를 정하는 content type header
  3. body 부분
1
2
3
resp.setStatus(200);
resp.setHeader("Content-Type", "text/plain");
resp.getWriter().println("Hello Servlet");
This post is licensed under CC BY 4.0 by the author.