반응형
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 | 31 |
Tags
- statement.executequery() cannot issue statements that do not produce result sets.
- error
- No tests found for given includes
- springboot
- springboottest
- java version
- LeetCode
- easy
- JUnit
- parse
- AWS CLI
- xcrun: error: invalid active developer path
- ssl프로토콜확인
- java 여러개 버전
- yum install java
- log error
- java
- 스프링부트테스트
- OpenFeign
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- java 버전 변경
- tls프로토콜확인
- mac os git error
- aws
- Java 1.8
- mysql executequery error
- Medium
- java 11
- ssl이란?
- java 1.8 11
Archives
- Today
- Total
쩨이엠 개발 블로그
[ Swagger ] @Schema LocalDateTime Format 본문
728x90
반응형
Swagger에 Description을 달던 중 ResquestBody안에 LocalDateTime이 있는 경우
@Schema의 example대로 나오지 않는 오류가 발생했다
해결방법
1. JsonFormat 어노테이션 추가
@Schema(name = "CorrelationDto.ChartReq", description = "데이터 리스트")
@Data
class ChartReq {
...
@Schema(description = "기간 시작일", example = "2021-11-30T00:00:00")
@JsonFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss")
private LocalDateTime shotRangeStart;
@Schema(description = "기간 종료일", example = "2022-03-31T00:00:00")
@JsonFormat(pattern = "yyyy-MM-ddTHH:mm:ss")
private LocalDateTime shotRangeEnd;
...
}
실패!
2. DateTimeFormat 추가
@Schema(name = "CorrelationDto.ChartReq", description = "데이터 리스트")
@Data
class ChartReq {
...
@Schema(description = "기간 시작일", example = "2021-11-30T00:00:00")
@DateTimeFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss")
private LocalDateTime shotRangeStart;
@Schema(description = "기간 종료일", example = "2022-03-31T00:00:00")
@DateTimeFormat(pattern = "yyyy-MM-ddTHH:mm:ss")
private LocalDateTime shotRangeEnd;
...
}
실패
3. type=string 추가
@Schema(name = "CorrelationDto.ChartReq", description = "데이터 리스트")
@Data
class ChartReq {
...
@Schema(description = "기간 시작일", example = "2021-11-30T00:00:00", type = "string")
private LocalDateTime shotRangeStart;
@Schema(description = "기간 종료일", example = "2022-03-31T00:00:00", type = "string")
private LocalDateTime shotRangeEnd;
...
}
성공!
RequestBody에 있는 LocalDateTime의 경우 type을 String으로 주면 정상적으로 Swagger에 example이 표시된다.
Swagger 2.0부터는 type에 LocalDate가 사라지고 date, date-time이 추가되었다.
date는 날짜, date-time은 날짜 및 시간정보를 표현하지만, DateTimeFormat이나 JsonFormat을 무시한다.
type을 String으로 추가해야 설정한 example을 보여줄 수 있다
728x90
반응형
'개발 > Spring' 카테고리의 다른 글
[ Spring ] SecurityConfig AccessDecisionManager / ExpressionHandler (0) | 2022.08.25 |
---|---|
[ SpringBootTest ] No tests found for given includes: [ApplicationTests.main](filter.includeTestsMatching) (0) | 2022.05.06 |
[ JUnit ] JUnit Test (0) | 2021.01.20 |
[ Redis ] Redis 환경 간단하게 구축하기 (0) | 2020.09.16 |
[ Spring boot] Could not resolve all files for configuration compileClasspath (0) | 2020.08.24 |
Comments