gpt4 book ai didi

java - 如何在 maven 中给出参数 - 对于 hadoop WordCount

转载 作者:可可西里 更新时间:2023-11-01 16:33:07 28 4
gpt4 key购买 nike

我在 eclipse 中做 Hadoop WordCount.java

我将输入和输出路径作为参数。

我正在尝试将我的 hadoop MR 从 eclipse juno 转换为 maven。

我写了 pom.xml。但是我应该在哪里包含我的参数?

  • 输入:/home/sree/myfiles/book.txt
  • 输出:/home/sree/myfiles/wcout

我编辑的pom.xml

   <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>TryMaven</groupId>
<artifactId>TryMaven</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>

<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>org.WordCount</mainClass>

</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<arguments>
<argument>-Dinput=${input}</argument>
<argument>-Doutput=${output}</argument>
<mainClass>org.WordCount</mainClass>
</arguments>
<mainClass>org.WordCount</mainClass>
</configuration>
</plugin>
</plugins>
</build>


<repositories>

<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>1.2.1</version>
</dependency>
</dependencies>


</project>

最佳答案

Maven项目是构建工具,迁移到maven后你仍然可以像以前一样运行你的程序。这与 Maven 无关。

Java 解决方案

您完全可以在没有 maven 的情况下运行 WordCount

java -jar target/TryMaven-0.0.1-SNAPSHOT.jar -Dinput=/home/sree/myfiles/book.txt -Doutput=/home/sree/myfiles/wcout

Maven解决方案

对 pom.xml 的更改

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<executable>java</executable>
<arguments>
<argument>-Dinput=${input}</argument>
<argument>-Doutput=${output}</argument>

<argument>-classpath</argument>
<classpath/>

<mainClass>org.WordCount</mainClass>
</arguments>
</configuration>
</plugin>

用命令执行

mvn exec:exec -Dinput=/home/sree/myfiles/book.txt -Doutput=/home/sree/myfiles/wcout

您可以直接从 Eclipse 执行此目标!

Run as -> Maven bulid 并使用所需的参数指定目标 exec:exec

关于java - 如何在 maven 中给出参数 - 对于 hadoop WordCount,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20017078/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com