Spring MVC 에러

Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError 해결 방법

 

 

pom.xml 에 의존성 추가

<dependency>
   <groupId>org.apache.httpcomponents</groupId>
   <artifactId>httpclient</artifactId>
   <version>4.5.2</version>
   <scope>runtime</scope>
 </dependency>

 

정상적으로 작동 완료 ~

+ Recent posts