스프링 부트
에러코드 : org.springframework.security.authentication.InternalAuthenticationServiceException: query did not return a unique result: 2;
1. 상황
코드 수정 후 작동 확인을 위해 프로잭트 실행 후 로그인 시도 시 에러 발생.
2. 원인
query가 실행되어 리턴값을 줬는데 결과가 2개다 라고 써있음을 확인
-> h2 접속 후 데이터를 확인하니 같은 데이터가 2개 들어있었음
3. 해결방법
중복 데이터 삭제
해결!
'프로그래밍 > 개발이슈' 카테고리의 다른 글
Spring Boot 2.7.0 * Thymeleaf 호환 문제 (0) | 2022.06.20 |
---|---|
java.lang.IllegalStateException: Failed to load ApplicationContext (0) | 2022.06.18 |
Unsatisfieddependencyexception Unsatisfied dependency expressed through constructor parameter 0 (0) | 2022.06.15 |
생성자 주입 에러 - @RequiredArgsConstructor + @Qualifier (0) | 2022.06.13 |
ConflictingBeanDefinitionException (0) | 2022.06.11 |