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>
정상적으로 작동 완료 ~
'개발일지 > JAVA & SPRING' 카테고리의 다른 글
[Spring] mapper select 결과값 hashmap 으로 받기 (0) | 2020.06.11 |
---|---|
[Spring] error page 처리 (0) | 2020.03.18 |
[Spring] Request processing failed; nested exception is java.lang.IllegalArgumentException:No converter found for return value of type: class java.util.HashMap 에러 해결 (0) | 2020.03.17 |
[Spring] Spring MVC - MyBatis 연동 (0) | 2020.03.16 |
[Spring] Spring MVC Eclipse로 시작 (0) | 2020.03.16 |