首页 > 解决方案 > 在springboot中,hbase-client不能使用

问题描述

在 spring boot 应用程序中,我使用 hbase-client 但无法启动,它报告 No qualifying bean of type 'org.apache.hadoop.hbase.client.HBaseAdmin'。我认为可能有一些冲突,然后我用 hbase 替换-shaded-client,但仍然出错。我的 pom 导入:

 <dependency>
            <groupId>org.apache.hbase</groupId>
            <artifactId>hbase-shaded-client</artifactId>
         <version>2.4.4</version>
        </dependency>

. 在我的其他应用程序中,hbase-client 运行良好。

标签: hbase-client

解决方案


推荐阅读