일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 자바백엔드
- MySQL
- github
- AWS
- java
- 알고리즘
- 백엔드
- 성능테스트
- 후기
- redis
- 레디스
- 자바
- Spring
- F-Lab
- grafana
- 플러터
- 멘토링
- 로드밸런서
- backend
- 도커
- 트러블슈팅
- error
- 데이터구조
- Flutter
- FLAB
- 부트캠프
- EC2
- 에프랩
- nGrinder
- 코딩테스트
- Today
- Total
민스씨의 일취일장
TIssue | IllegalStateException: Faild to load ApplicationContext 본문
TIssue | IllegalStateException: Faild to load ApplicationContext
읻민스 2023. 2. 23. 21:26IllegalStateException에 대한 글이다.
상황
새로운 ServiceImple을 만든 뒤 테스트를 실행 중 IllegalStateException: Faild to load ApplicationContext... 이 발생했다.
오류내용
IllegalStateException: Faild to load ApplicationContext
...
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in URL
...
Caused by: org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file ...
[.../target/classes/mapper/boardMapper.xml]';
...
Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML.
...
Caused by: java.lang.IllegalArgumentException: Mapped Statements collection already contains value for com.....dao.BoardMapper.updateCommentCnt. please check file [.../target/classes/mapper/boardMapper.xml] and file [.../target/classes/mapper/boardMapper.xml]
오류 파악 시도
- 1. @WebAppConfiguration
Test 객체에 WebAppConfiguration 애너테이션을 추가하면 된다고 많은 글들이 말하지만 이경우는 그렇지 않았다.
- 2. root-context.xml
root-context.xml 파일에서 sqlSessionFactory 빈의 property인 mapperLocations를 살펴보았다. 하지만 문제가 없었다.
- 3. BoardMapper.updateCommentCnt. please check file
오류 내용에서 빨간색으로 표시된 부분이 있다. 여기서 같은 파일을 확인해 보라고 한다. 원인은 여기에 있었다.
원인 및 해결방법
Mapper.xml 파일에서 중복 sql이 작성돼 있었다. 하여 중복으로 작성한 sql문 하나를 삭제해 주었다.
결과
문제없이 정상작동 됐다.
'Programming Language & Framework > JAVA & Spring' 카테고리의 다른 글
TIL | LogT | Java Math에 대해 알게된 내용과 고민들 (0) | 2023.03.06 |
---|---|
TIssue | No converter found for return value of type: class java.util.ArrayList 해결방법 (0) | 2023.02.24 |
LogT | Java Spring | View 레이어로 데이터를 보내는 두 가지 객체 Model와 RedirectAttribute (0) | 2023.02.16 |
TIssue | Test 실행 중 TextContextManager 오류 발생 (0) | 2023.02.13 |
LogT | Java Spring의 MyBatis에 대해 알게된 모든 내용과 고민들 (0) | 2023.02.09 |