[TIL]23.01.09 Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception

hyewon jeong·2023년 1월 9일
0

TIL

목록 보기
65/138

1. 발생

게시글 작성 구현 후 포스트맨으로 게시글 작성을 보내니 , 500에러와 함께 콘솔창에 아래와 같은 에러 발생했다.

2 코드

2023-01-09 19:23:43.320 ERROR 8052 --- [nio-8080-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "com.example.myblog1.entity.Posts.getId()" because "posts" is null] with root cause

java.lang.NullPointerException: Cannot invoke "com.example.myblog1.entity.Posts.getId()" because "posts" is null
	at com.example.myblog1.dto.PostsResponse.<init>(PostsResponse.java:20) ~[main/:na]

3 원인

........... JSON 보낼때 content 변수명이 잘못되었다.

4 해결

contents(x) -> content

profile
개발자꿈나무

0개의 댓글