728x90
반응형
API Message Body 는 단순 텍스트를 HTTP message body에 직접 담아서 요청을 보내는 것이다
- HTTP API에서 주로 사용하고, JSON, XML, TEXT와 같은 형식으로 보낸다.
- 데이터 형식은 주로 JSON을 사용하고,
- POST, PUT, PATCH 와 같은 메서드 방식으로 보낼 수 있다.
먼저 가장 단순한 텍스트 메시지를 HTTP 메시지 바디에 담아서 전송하고 읽어본다.
HTTP 메시지 바디의 데이터를 InputStream을 이용해서 직접 읽을 수 있다.
RequestBodyStringServlet.java
package helloMVC.servlet.basic.request;
import org.springframework.util.StreamUtils;
import org.springframework.util.StringUtils;
import javax.servlet.ServletException;
import javax.servlet.ServletInputStream;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
@WebServlet(name = "requestBodyStringServlet", urlPatterns = "/request-body-string")
public class RequestBodyStringServlet extends HttpServlet {
@Override
protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
ServletInputStream inputStream = request.getInputStream();
String messageBody = StreamUtils.copyToString(inputStream, StandardCharsets.UTF_8);
System.out.println("messageBody = " + messageBody);
response.getWriter().write("ok");
}
}
Postman 을 이용해서 테스트를 해봐야 한다.
728x90
반응형
'스프링 > 스프링 웹' 카테고리의 다른 글
[Spring] HttpServletResponse - 기본 사용법 (0) | 2023.05.18 |
---|---|
[Spring] HTTP 요청 데이터 - API 메시지 바디 - JSON (0) | 2023.05.17 |
[Spring] HTTP 요청 데이터 - POST HTML Form (0) | 2023.05.17 |
[Spring] HTTP 요청 데이터 종류 및 GET 쿼리 파라미터 (0) | 2023.05.17 |
[Spring] HttpServletRequest 개요 및 기본 사용 (0) | 2023.05.17 |
댓글