[ERROR] Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause

SCY·2023년 7월 10일
0

error

목록 보기
1/3

위 에러는 보통 생성자나 의존 관계를 주입하지 않아서 발생한다.

코드 수정할 생각 말고

어노테이션 잘 붙여줬는지만 파악해라.

다신 삽질하지 하지 않기를!

@RestController
@RequiredArgsConstructor
@RequestMapping("/api/v1/communities")
public class CommunityController {
    private final FreeBoardService freeBoardService;
}

나는 컨트롤러에 생성자를 제대로 주입하지 않아서 에러가 발생한 경우였다.

profile
성장 중독 | 서버, 데이터, 정보 보안을 공부합니다.

0개의 댓글