백엔드에서 넘어오는 객체 속성 값 전부 Null이거나 컨트롤러 테스트값이 전부 null 일 때
위의 문제를 벌써 몇 번이나 겪는지 모르겠다. 저 디버깅 문제로 사실 6,7번은 겪은 것 같다. 그래서 디버깅 포인트를 간단히 정리해보았다. 1. 생성자 확인 해 볼 것 public ClassName(Long id, String writer, String title, String topic, String place, String time, String participants, String content, Long views, Long likes) { this.id = id; this.writer = writer; this.title = title; this.topic = topic; this.place = place; this.time = time; this.participants = participan..
2022. 12. 2.