반응형
오류 메세지
Consider defining a bean of type 'org.springframework.security.core.userdetails.UserDetailsService' in your configuration.
'org.springframework.security.core.userdetails.UserDetailsService' that could not be found.
해결
간혹 springframword의 bean을 찾을 수 없다고 에러가 뜨는데, 인터페이스 구현을 명시하지 않아서 뜨는 것..
구현한 UserDetailsService 클래스에 implements UserDetailsService를 빼먹어버렸다.
반응형
'개발 환경 및 오류' 카테고리의 다른 글
SHA(Secure Hash Algorithm, 안전한 해시 알고리즘) (0) | 2017.02.28 |
---|---|
jpa update (0) | 2017.02.04 |
이클립스 : JSP unknown tag (0) | 2017.01.21 |
Lombok (0) | 2017.01.20 |
Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one on the classpath. (0) | 2017.01.20 |