赞
踩
创建一个新的maven项目
点击hadoop-common
选择对应版本,
把依赖复制到maven中
还需要加上复数
- <dependencies>
- <!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-common -->
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-common</artifactId>
- <version>2.7.1</version>
- </dependency>
- </dependencies>
除了commen外 客户端也是需要的
按上面的步骤把客户端复制上去
变成这样
同上 把hdfs加进去
再搜索junit 把最高版本也复制进去
还需要jdk版本依赖加到最前面
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.7.0</version>
- <scope>system</scope>
- <systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
- </dependency>
- <!-- https://mvnrepository.com/artifact/junit/junit -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- <scope>test</scope>
- </dependency>
在依赖外加上
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.7</source> <!-- 默认是1.5,不能写成1.7.0 -->
- <target>1.7</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
再创建一个包
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。