[Spring] LocalDateTime 데이터 검증 시에 나노초를 일치시키자.
1. 개발 환경Java 17SpringBoot 3.2.3 2. 테스트 시에 사용된 코드DTO클라이언트에 반환되는 데이터를 담고 있다.@Getterpublic class GetSectionsResponseDto { .. 생략 @Schema(description = "회고 카드 등록일", example = "2021-07-01T00:00:00") private LocalDateTime createdDate; }RepositoryQueryDSL을 사용하여 DB에서 데이터를 조회하고, 조회한 데이터를 프로젝션을 통해 DTO로 변환한다.@RequiredArgsConstructorpublic class SectionRepositoryCustomImpl implements SectionReposito..
Spring
2024. 10. 2. 22:44