-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: dto mapping 추가 #30
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨어요~
@JsonProperty("E") | ||
private int E; | ||
@NotNull(message = "I cannot be null") | ||
@JsonProperty("I") | ||
private int I; | ||
@NotNull(message = "N cannot be null") | ||
@JsonProperty("N") | ||
private int N; | ||
@NotNull(message = "S cannot be null") | ||
@JsonProperty("S") | ||
private int S; | ||
@NotNull(message = "T cannot be null") | ||
@JsonProperty("T") | ||
private int T; | ||
@NotNull(message = "F cannot be null") | ||
@JsonProperty("F") | ||
private int F; | ||
@NotNull(message = "P cannot be null") | ||
@JsonProperty("P") | ||
private int P; | ||
@NotNull(message = "j cannot be null") | ||
@JsonProperty("j") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
어떤 오류였나요??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
입력으로 들어오는 Json과 변수가 일치하지 않아서 그랬던 것 같습니다.
📌 관련 이슈
✨ PR 세부 내용
dto 인식하기 위한 JsonProperty설정