java phoenix 连接hbase

Posted tele-share

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java phoenix 连接hbase相关的知识,希望对你有一定的参考价值。

1 <dependency>
2     <groupId>org.apache.phoenix</groupId>
3     <artifactId>phoenix-core</artifactId>
4     <version>5.0.0-HBase-2.0</version>
5 </dependency>

除此之外还需要导入phoenix-5.0.0-HBase-2.0-client.jar

把以下文件拷贝到resources文件夹下

技术图片

 1 public class Demo {
 2     public static void main(String[] args) throws SQLException {
 3         Connection connection = BaseDB.getConnection();
 4 
 5         String sql = "select * from test";
 6         PreparedStatement prepareStatement = connection.prepareStatement(sql);
 7         ResultSet rs = prepareStatement.executeQuery();
 8         while (rs.next()) {
 9             System.out.println(rs.getInt(1));
10             System.err.println(rs.getString(2));
11         }
12 
13     }
14 }
15 public class BaseDB {
16     public static Connection getConnection() {
17         try {
18             Class.forName("org.apache.phoenix.jdbc.PhoenixDriver");
19             return DriverManager.getConnection("jdbc:phoenix");
20         } catch (Exception e) {
21             e.printStackTrace();
22             return null;
23         }
24     }
25 }

 

以上是关于java phoenix 连接hbase的主要内容,如果未能解决你的问题,请参考以下文章

安装phoenix时初始化连接hbase异常导致hbase节点挂掉

HBase连接的几种方式

Hbase Phoenix简介及其安装部署

Phoenix连接安全模式下的HBase集群

hadoop:hbase:apache-phoenix连接hbase,实现类sql查询(附DBeaver连接方式)

Phoenix程序如何加载hbase-site.xml