공통점 둘 다 dto의 벨리데이션을 컨트롤러에서 파라미터를 받을때 검증하는데 사용할 수 있다. 차이점 @Validated는 그룹별로(get, post,,,) 별로 벨리데이션을 할수있어서 그룹별로 더욱 섬세하게 검증할 수 있다. 사용방법 1. DTO에서 그룹을 지정한다. @Getter @Setter public class AccountLevelManagementCommand { @NotBlank( message = "Account ID cannot be empty.", groups = {AccountLevelManagementRequestValidationGroup.class, AccountLevelManagementSubmitValidationGroup.class}) private String id; @..