0

我正在 Eclipse 中使用 Maven 创建一个 java 项目。我必须使用库AsyncHttpClient ( https://github.com/AsyncHttpClient/async-http-client )。我已经为这个库输入了文件 pom.xml 依赖项。我需要包 org.asynchttpclient.uri 中存在的 UriComponents 类,但我无法导入它。我做了:

import org.asynchttpclient.uri.UriComponents; 

但我得到一个错误。

这是我需要的课程的链接:

UriComponents.java

我该如何导入它?谢谢。

这是我现在的pom:

<?xml version="1.0" encoding="UTF-8"?> 
<project xmlns="maven.apache.org/POM/4.0.0"; 
         xmlns:xsi="w3.org/2001/XMLSchema-instance";        
         xsi:schemaLocation="maven.apache.org/POM/4.0.0 maven.apache.org/xsd/maven-4.0.0.xsd">; 
<modelVersion>4.0.0</modelVersion> 
...
<dependency> 
    <groupId>com.ning</groupId> 
    <artifactId>async-http-client</artifactId> 
    <version>1.8.12</version> 
</dependency>
...
4

2 回答 2

2

它在以下版本中1.9.0-BETA6可用com.ning.http.client.uri.UriComponents

您请求的那个似乎在 master 分支中,尚未发布。

在https://groups.google.com/forum/#!forum/asynchttpclient查看论坛

于 2014-07-31T10:41:43.140 回答
0

在此处查看类似问题 "If you right-click on your project, there should be an option under "maven" to "enable dependency management". That's it."

于 2014-07-31T08:56:15.643 回答