Error code 모음/5. JAVA, Spring errors

[Java Error] StatusLogger Caught java.lang.AbstractMethodError

쟈누이 2020. 10. 12. 21:46
반응형

해당 에러가 발생할 경우 .xml 파일이 제대로 파싱이 되지않아 스프링에서

해독을 못할 수 있다.

 

특히 mybatis 의 쿼리문은 .xml 로 등록을 하기 때문에, 위 에러가 발생할 시에는 주의를 기울이고

구글링을 통해 빠르게 해결하는 것이 무엇보다도 중요하다

 

pom.xml 에 아래와 같이 등록을 하면 해결할 수 있었다.

<dependency>
    <groupId>xerces</groupId>
    <artifactId>xercesImpl</artifactId>
    <version>2.11.0</version>
</dependency>

 

자세한 사항은 아래 링크 참고

 

참고 링크

stackoverflow.com/questions/47900670/error-statuslogger-caught-java-lang-abstractmethoderror

 

ERROR StatusLogger Caught java.lang.AbstractMethodError

I have an application that used log4j1.2.17.Now I want to change it to log4j2. So i changed the pom.xml (I'm sure that i have remove the log4j1 in any dependency), add the log4j2.xml. The log4j2 wo...

stackoverflow.com

 

반응형