중첩된 개체에 대한 Javax 유효성 검사 - 작동하지 않음 Spring Boot 프로젝트에서는 LocationDto와 BuildingDto의 2개의 DTO를 검증하려고 합니다.LocationDto에는 BuildingDto 유형의 중첩된 개체가 있습니다. DTO는 다음과 같습니다. 로케이션 DTO public class LocationDto { @NotNull(groups = { Existing.class }) @Null(groups = { New.class }) @Getter @Setter private Integer id; @NotNull(groups = { New.class, Existing.class }) @Getter @Setter private String name; @NotNull(group..