[문제]
jsp파일을 실행시켰는데 500에러가 떴음.
root cause에 org.springframework.beans.factory.UnsatisfiedDependencyException 라고 쓰여있었음.
[해결]
1. HTTP Status 500에러가 뜨면 먼저 root cause에서 뱉는 오류를 확인.
2. Error creating bean with name 'userController': Unsatisfied dependency expressed through field 'codeService';라는 문제 발견.
3. 서비스메소드 부분에 @Service를, 참조객체 부분에 @Autowired를 붙여주면서 해결함.