web123456

Hive error: The third-party jar package cannot be found in the custom function: com/alibaba/fastjson/JSON

 Method 2: Add file configuration to jar packages and package third-party jar packages together

<dependency>

        <groupId>xxxxx</groupId>

        <artifactId>xxxxx</artifactId>

        <version>xxx</version>

        <scope>compile</scope>Adding this configuration provided will not enter the jar package, compile will enter the jar package

</dependency>