mapreduce 使用alibaba.fastjson java.lang.ClassNotFoundException: com.alibaba.fastjson.JSON

hadoop program to introduce third-party dependencies fastjson, packaged MapReduce programs to execute on the cluster, or submit directly to the YARN are reported Error in IDEA: java.lang.ClassNotFoundException: com.alibaba.fastjson.JSON ... this error
by maven- assembly-plugin custom packaging resolve this issue
first add plug declared in the pom.xml file:

<build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                    <descriptors>
                        <descriptor>src/assembly/assembly.xml</descriptor>
                    </descriptors>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>com.wxx.bigdata.mr.ETLApp</mainClass>
                        </manifest>
                    </archive>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
Second, the custom file assembly.xml
 

<Assembly
        xmlns = "http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
        xmlns: the xsi = "http://www.w3.org/2001/XMLSchema-instance"
        the xsi: the schemaLocation = "http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0
       http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    < the above mentioned id> the Customer-the Dependencies </ the above mentioned id>
    <Formats>
        <format> JAR </ format>
    </ Formats>
    <-! specify whether to include packing layer directory, here set to false, otherwise it will not find the main class - >
    <includeBaseDirectory> to false </ includeBaseDirectory>
    <FileSets>
        <the fileSet>
            <Directory> $ {project.build.directory}/classes</directory>
            <outputDirectory>/</outputDirectory>
        </fileSet>
    </fileSets>
 
    <dependencySets>
        <dependencySet>
            <unpack>true</unpack>
            <includes>
                <include>com.alibaba:fastjson</include>
            </includes>
        </dependencySet>
    </dependencySets>
</assembly>
项目的目录结构如图

Complete pom.xml file as follows:

<?xml version="1.0" encoding="UTF-8"?>
<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>com.wxx.bigdata</groupId>
    <artifactId>hadoop-project</artifactId>
    <version>1.0</version>
 
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <hadoop.version>2.6.0-cdh5.15.1</hadoop.version>
        <zk.version>3.4.5-cdh5.15.1</zk.version>
        <curator.version>4.0.0</curator.version>
        <flume.version>1.6.0-cdh5.15.1</flume.version>
    </properties>
 
    <repositories>
        <repository>
            <id>cloudera</id>
            <url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
        </repository>
    </repositories>
 
    <dependencies>
        <!--Hadoop依赖-->
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-client</artifactId>
            <version>${hadoop.version}</version>
        </dependency>
 
        <!-- ZK依赖-->
        <dependency>
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
            <version>${zk.version}</version>
        </dependency>
 
        <dependency>
            <groupId>org.apache.flume</groupId>
            <artifactId>flume-ng-core</artifactId>
            <version>${flume.version}</version>
        </dependency>
 
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.51</version>
        </dependency>
 
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.5</version>
        </dependency>
 
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
 
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                    <descriptors>
                        <descriptor>src/assembly/assembly.xml</descriptor>
                    </descriptors>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>com.wxx.bigdata.mr.ETLApp</mainClass>
                        </manifest>
                    </archive>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
通过IDEA的maven打包,生成的自定义包

Run mvn clean install -Dmaven.test.skip = true generate three jar package, the second selection, effective pro-test

Released five original articles · won praise 1 · views 1244

Guess you like

Origin blog.csdn.net/huiminchi/article/details/103158359