알아가기/Spring

[Spring] Tomcat 실행 에러 해결 java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

XEV 2023. 12. 8. 21:31

 

 

 

SEVERE: Error configuring application listener of class [org.springframework.web.context.ContextLoaderListener]
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

 

얼마전에도 이렇게 떳었다. 검색을 통해 해결을 하였지만 어떻게 했는지 기억을 더듬어보니 가물가물한 상태였기에 다시 검색하여 해결하면서 기록해둔다.

 

 

 

6줄 요약

1. 프로젝트 우클릭 -> Properties

2. Deployment Assembly 선택 -> Add 클릭

3. Java Build Path Entries 선택 -> Next 클릭

4. Maven Dependencies 선택 -> Finishi 클릭

5. Maven Dependencies 추가된거 확인 -> Apply 클릭, 클릭

6. Apache tomcat으로 프로젝트 재실행

 

 

 

1. 프로젝트 우클릭 -> Properties

 

 

 

2. Deployment Assembly 선택 -> Add 클릭

 

 

 

3. Java Build Path Entries 선택 -> Next 클릭

 

 

 

4. Maven Dependencies 선택 -> Finishi 클릭

 

 

 

5. Maven Dependencies 추가된거 확인 -> Apply 클릭, 클릭

 

 

 

6. Apache tomcat으로 프로젝트 재실행

해결

 

 

 

 

Reference

https://stackoverflow.com/a/8128255

 

java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

I included these in the Build Path: all Spring libs Apache Tomcat 7.0 library The project still fails during startup: SEVERE: Error configuring application listener of class org.springframework....

stackoverflow.com