API를 호출했는데 다음과 같은 문제가 발생했다.
ERROR 35176 --- [nio-8080-exec-3] c.s.i.e.ControllerExceptionHandler : handleException
org.springframework.orm.jpa.JpaSystemException: Null value was assigned to a property [class com.search.instagramsearching.entity.Users.followers] of primitive type setter of com.search.instagramsearching.entity.Users.followers; nested exception is org.hibernate.PropertyAccessException: Null value was assigned to a property [class com.search.instagramsearching.entity.Users.followers] of primitive type setter of com.search.instagramsearching.entity.Users.followers
💡 참고
자바에서 Primitive Type(boolean, byte, short, int, long, float, double, char)은 null값을 담을 수 없다.
문제가 발생한 DTO에서 Primitive Type을 Reference Type으로 변경해준다.