728x90 반응형 @Getter2 [스프링MVC -상품 관리 웹 개발 1] 상품 도메인 개발 요구사항상품 도메인 모델상품 ID, 상품명, 가격, 수량상품 관리 기능상품 목록, 상품 상세, 상품 등록, 상품 수정 핵심 비즈니스 로직 (상품 도메인) 을 개발해보자.상품 객체//@Data@Getter @Setterpublic class Item { private Long id; private String itemName; private Integer price; private Integer quantity; //null일 경우 포함하기 위해 Integer public Item() { } public Item(String itemName, Integer price, Integer quantity) { this.itemName = itemName; this.pr.. 2024. 10. 12. [스프링 MVC 13] 서블릿: HTTP 요청 데이터 - API 메시지 바디 HTTP message body에 데이터를 직접 담아서 담아서 요청 먼저 가장 단순한 텍스트 메시지를 담아 전송하고, 읽어보자 HTTP 메시지 바디의 데이터를 InputStream을 사용해서 직접 읽을 수 있다 @WebServlet(name="requestBodyStringServlet", urlPatterns = "/request-body-string") public class RequestBodyStringServlet extends HttpServlet { @Override protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //HTTP메시지바디의 데이.. 2023. 7. 20. 이전 1 다음 728x90 반응형