哪个jar包含HttpClientConnectionManager
?我需要jar的名称来配置maven的pom.xml
。
我认为jar是org.apache.httpcomponents
,然后我按如下方式配置pom.xml
:
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5</version>
</dependency>
显示错误:
HttpClientConnectionManager cannot be resolved
答案 0 :(得分:0)
请你尝试不同版本的依赖项。我正在使用以下依赖项,它对我有用。
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.5</version>