이거 쓸려면 새로 종속성에 implementation 'org.springframework.boot:spring-boot-starter-validation' 추가시켜 줘야 한다. 아마 스프링 부트에서 처음부터 추가해서 쓰는 게 좋을 듯 하다. public class Item { private Long id; @NotBlank(message="공백X") private String itemName; @NotNull @Range(min=1000,max=100000) private Integer price; @NotNull @Max(9999) private Integer quantity; public Item() { } public Item(String itemName, Integer price, Integer..