728x90 반응형 bootstrap1 [스프링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. 이전 1 다음 728x90 반응형