🌿 기본 환경: IDE: STS, Language: Java
발생 Error
Spring에서 다음 Source Code를 실행할 경우,
⭐ 하기 Error 발생
Failed to instantiate [user.service.UserUpdateService]: Constructor threw exception; nested exception is java.lang.NullPointerException
발생 원인
userDAO가 null로 선언된 상태에서 getUserList()를 실행하고자 할 때, NullPointerException 발생
해결 방법
List 선언부를 UserSelectService의 객체가 생성될 때 같이 실행되도록 하지 않고
execute() 실행될 때 생성되도록 변경하여 userDAO가 null이 아닌 값이 Setter에 주입되고 나서 값을 대입
'Java > Spring with Error' 카테고리의 다른 글
[해결 방법] Request method 'POST' not supported (0) | 2023.05.28 |
---|---|
[해결 방법] org.springframework.validation.BindException: (0) | 2023.05.27 |
[해결 방법] Unable to create requested service (0) | 2023.05.25 |
[해결 방법] SQLGrammarException: could not prepare statement (0) | 2023.05.21 |
[해결 방법] No default constructor found (0) | 2023.04.08 |