Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 인프런
- JDBC
- 김영한
- Thymeleaf
- java
- springdatajpa
- JPQL
- 스프링 핵심 원리
- 알고리즘
- 백준
- QueryDSL
- kotlin
- AOP
- 스프링 핵심 기능
- SpringBoot
- Exception
- spring
- db
- 스프링
- 자바
- Servlet
- pointcut
- http
- Android
- jpa
- Spring Boot
- 그리디
- transaction
- Proxy
- Greedy
Archives
- Today
- Total
개발자되기 프로젝트
요구사항 추가. 본문
1. 요구사항 추가
- 판매 여부
- 판매 오픈 여부
- 체크 박스로 선택할 수 있다.
- 등록 지역
- 서울, 부산, 제주
- 체크 박스로 다중 선택할 수 있다.
- 상품 종류
- 도서, 식품, 기타
- 라디오 버튼으로 하나만 선택할 수 있다.
- 배송 방식
- 빠른 배송
- 일반 배송
- 느린 배송
- 셀렉트 박스로 하나만 선택할 수 있다.
- 예시
2. ItemType
- 상품 type을 enum으로
- 설명을 위해 description 추가함.
public enum ItemType {
BOOK("도서"), FOOD("음식"), ETC("기타");
private final String description;
ItemType(String description) {
this.description = description;
}
}
3. Delivery code
/**
* FAST: 빠른 배송
* NORMAL: 일반 배송
* SLOW: 느린 배송
*/
@Data
@AllArgsConstructor
public class DeliveryCode {
private String code;
private String displayName;
}
4. Item
import lombok.Data;
import java.util.List;
@Data
public class Item {
private Long id;
private String itemName;
private Integer price;
private Integer quantity;
private Boolean open; //판매 여부
private List<String> regions; //등록 지역
private ItemType itemType; //상품 종류
private String deliveryCode; // 배송 방식
public Item() {
}
public Item(String itemName, Integer price, Integer quantity) {
this.itemName = itemName;
this.price = price;
this.quantity = quantity;
}
}
5. GitHub
'인프런 > [인프런] 스프링 MVC 2' 카테고리의 다른 글
체크박스 - 단일 2 (0) | 2021.09.23 |
---|---|
체크박스 - 단일 1 (0) | 2021.09.23 |
[Thymeleaf+Spring] 입력 form 처리 (0) | 2021.09.20 |
[Thymeleaf+Spring] 타임리프, 스프링 통합 (0) | 2021.09.20 |
[Thymeleaf] Template Layout 2 (0) | 2021.09.19 |
Comments