728x90
반응형
회원가입 기능을 구현하는 도중에, 위와 같이 NullPointerException이 발생했다
콘솔에 뜬 Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception 을 검색해보니
쿼리가 잘못되었다고 해서 한참 헤매다가..
로그를 찍어보니, Controller와 Service에서 값은 넘겨받아서 Entity 까지 생성을 했다.
따라서 문제는 Repository에 있었다 !
알고보니, Service에서 Repository를 초기화하지 않았기 때문에 발생한 오류였다.
따라서 @Autowired annotation을 통해 Repository를 초기화하거나
위와 같이 Service 를 생성할 때, Repository를 초기화하여 해결하였다!
728x90
반응형