场景:
今天java连接hive的时候,启动报错。
原因:在项目中引入了hive-jdbc的依赖,依赖冲突导致报错。去掉hive-jdbc依赖中冗余的jetty依赖即可解决问题
<!-- https://mvnrepository.com/artifact/org.apache.hive/hive-jdbc -->
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId>
<version>2.1.1</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty.aggregate</groupId>
<artifactId>jetty-all</artifactId>
</exclusion>
</exclusions>
</dependency>