상황 : DB에서 읽어온 Entity를 Dto로 response 하는 과정에서 에러 발생
내용 : No serializer found for class XXX and no properties discovered to create BeanSerializer
해결 방법 : Dto 필드에 @JsonProperty 추가
public class UserInfoDto {
@JsonProperty
private String email;
public UserInfoDto(String email) {
this.email = email;
}
}
참고:
'Dev > 오류 해결 방법 정리' 카테고리의 다른 글
sqlalchemy.cyextension.resultproxy.BaseRow.__getitem__ TypeError (0) | 2023.02.20 |
---|---|
Request processing failed; nested exception is java.lang.NullPointerException (0) | 2022.03.22 |
[Android] 안드로이드 스튜디오 애뮬레이터 실행 오류 (0) | 2019.04.23 |