且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

hadoop-core.jar中不存在org.apache.hadoop.conf.Configuration

更新时间:2022-10-27 19:51:07

将hadoop-common添加到您的pom.xml中

 < dependency> 
< groupId> org.apache.hadoop< / groupId>
< artifactId> hadoop-common< / artifactId>
< version> 2.0.0-cdh4.3.1< / version>
< /依赖关系>


I am writing an HBase client in Java. The first line, of coz, looks like this:

import org.apache.hadoop.conf.Configuration;

I am using Cloudera CDH4.3.1, so the package versions should be:

hadoop-2.0.0+1367
hbase-0.94.6+106

==Updated==

my pom.xml looks like this:

<dependency>
  <groupId>org.apache.hadoop</groupId>
  <artifactId>hadoop-core</artifactId>
  <version>2.0.0-mr1-cdh4.3.1</version>
</dependency>


<dependency>
  <groupId>org.apache.hbase</groupId>
  <artifactId>hbase</artifactId>
  <version>0.94.6-cdh4.3.1</version>
</dependency>

But somehow, in hadoop-core.jar, I am not seeing any existence of org.apache.hadoop.conf.Configuration. As the result of it, the import is not resolved by Java obviously.

Add hadoop-common to your pom.xml

<dependency>                                                                                                                                       
    <groupId>org.apache.hadoop</groupId>                                                                                                           
    <artifactId>hadoop-common</artifactId>                                                                                                         
    <version>2.0.0-cdh4.3.1</version>                                                                                            
</dependency>