[스프링 MVC 1편 - 백엔드 웹 개발 핵심 기술] HTTP 요청 데이터
·
Back-End/Spring
[작성일: 2024. 06. 24] GET 쿼리 파라미터package hello.servlet.basic.request;import jakarta.servlet.ServletException;import jakarta.servlet.annotation.WebServlet;import jakarta.servlet.http.HttpServlet;import jakarta.servlet.http.HttpServletRequest;import jakarta.servlet.http.HttpServletResponse;import java.io.IOException;/** 1. 파라미터 전송 기능* http://localhost:8080/request-param?username=hello&age=20* */@Web..