Spring Boot 에서 JPA 를 이용해서 api를 개발하고 있는데
com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class ~~~Controller$~~~Dto and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS)
라는 에러가 툭하고 튀어나왔다 ...
해결방법
해별방법은 간단하다... 가리키고 있는 클래스에 getter를 추가해주면된다.
나는 lombok을 사용하고 있는데... 그래서 깔끔하게 해결하기 위해서 @Getter 를 클래스에 추가해주거나.. @Data를 추가해주면 된다.
끝...
반응형
댓글