noclassdeffounderror: org/apache/http/client/methods/httpurirequest

noclassdeffounderror: org/apache/http/client/methods/httpurirequest

Hi,

One of my application is throwing following error:

noclassdeffounderror: org/apache/http/client/methods/httpurirequest

How to resolve this?

Thanks

View Answers

April 26, 2017 at 4:10 PM

Hi,

In your application you should download and add the httpclient jar file. After this problem should be solved.

If you are using the maven then add following dependency:

<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.3</version>
</dependency>

Thanks









Related Tutorials/Questions & Answers:

Ads