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 |
Tags
- BindingResult
- 쉘 스크립트
- spring
- m:n
- 무한정 대기
- 파이썬
- 프로그래머스
- allocationSize
- 리눅스
- 티스토리챌린지
- DTO
- 은행원알고리즘
- 알고리즘
- 컴파일 타임 상수
- 편향된 지수
- JDBC
- 커밋 되돌리기
- application layer
- API
- @Autowired
- JPA
- 쿠키
- 런타임 상수
- compgen
- 백준
- 기본키 전략
- intelij spring config
- 오블완
- @SubscribeMapping
- Git
Archives
- Today
- Total
목록Bean Validation (1)
둘셋 개발!
[spring mvc 2편-웹 개발 활용 기술 - 4 (2) ] 검증2 BeanValidation
Bean Validation이란? : 검증 애노테이션과 여러 인터페이스의 모음이다. Item 클래스에 Bean Validation을 적용해보자 @Data public class Item { private Long id; @NotBlank private String itemName; @NotNull @Range(min = 1000, max = 1000000) private Integer price; @NotNull @Max(9999) private Integer quantity; public Item() {} public Item(String itemName, Integer price, Integer quantity) { this.itemName = itemName; this.price = price; t..
SPRING/MVC
2022. 1. 30. 21:38