JAva apiアクセスhbase-demo


JAva apiアクセスhbase-demo
本文の主な参考:http://blog.csdn.net/kangkanglou/article/details/37329811
次にjava apiを使用してhbaseを操作します.
1、新しいweb mavenプロジェクト
mvn archetype:generate -DarchetypeCatalog=internal
2、pom.xml jarパッケージ依存を追加

        
            org.apache.hbase
            hbase-client
            1.2.2
        
        
        
            org.apache.hadoop
            hadoop-core
            2.6.0-mr1-cdh5.9.0
        

        
        
            org.apache.logging.log4j
            log4j-core
            2.6.2
        

        
            javax.servlet
            javax.servlet-api
            4.0.0-b01
        

3、新しいservlet:
package com.xueyoucto.hbasett;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HTableDescriptor;
import org.apache.hadoop.hbase.client.*;
import org.apache.hadoop.hbase.protobuf.generated.ClientProtos;
import org.apache.hadoop.hbase.util.Bytes;

/**
 * Created by Administrator on 2016-11-22.
 */
@WebServlet(name = "Servlet",urlPatterns = "/HBaseServlet")
public class Servlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request,response);
    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        String tableName = "test";
        String columnFamily = "cf";
        try {

            if (true == Servlet.delete(tableName)) {
                System.out.println("Delete Table " + tableName + " success!");

            }
            System.out.println("************start create table**********");
            Servlet.create(tableName, columnFamily);
            Servlet.put(tableName, "row1", columnFamily, "column1",
                    "data1");
            Servlet.put(tableName, "row2", columnFamily, "column2",
                    "data2");
            Servlet.put(tableName, "row3", columnFamily, "column3",
                    "data3");
            Servlet.put(tableName, "row4", columnFamily, "column4",
                    "data4");
            Servlet.put(tableName, "row5", columnFamily, "column5",
                    "data5");

            Servlet.get(tableName, "row1");

            Servlet.scan(tableName);

        } catch (Exception e) {
            e.printStackTrace();
        }

        response.setCharacterEncoding("utf-8");
        response.setContentType("text/html;charset=utf-8");
        PrintWriter out = response.getWriter();
        out.println("hello world");
        out.flush();
        out.close();
    }

    static Configuration cfg;

    static {
        cfg = HBaseConfiguration.create();
        System.out.println(cfg.get("hbase.master"));
    }

    public static void create(String tableName, String columnFamily)
            throws Exception {
        HBaseAdmin admin = new HBaseAdmin(cfg);
        if (admin.tableExists(tableName)) {
            System.out.println(tableName + " exists!");
        } else {
            HTableDescriptor tableDesc = new HTableDescriptor(tableName);
            tableDesc.addFamily(new HColumnDescriptor(columnFamily));
            admin.createTable(tableDesc);
            System.out.println(tableName + " create successfully!");
        }
    }

    public static void put(String tablename, String row, String columnFamily,
                           String column, String data) throws Exception {

        HTable table = new HTable(cfg, tablename);
        Put put = new Put(Bytes.toBytes(row));

        put.add(Bytes.toBytes(columnFamily), Bytes.toBytes(column),
                Bytes.toBytes(data));

        table.put(put);

        System.out.println("put '" + row + "', '" + columnFamily + ":" + column
                + "', '" + data + "'");

    }

    public static void get(String tablename, String row) throws Exception {
        HTable table = new HTable(cfg, tablename);
        Get get = new Get(Bytes.toBytes(row));
        Result result = table.get(get);
        System.out.println("Get: " + result);
    }

    public static void scan(String tableName) throws Exception {

        HTable table = new HTable(cfg, tableName);
        Scan s = new Scan();
        ResultScanner rs = table.getScanner(s);

        for (Result r : rs) {
            System.out.println("Scan: " + r);

        }
    }

    public static boolean delete(String tableName) throws IOException {

        HBaseAdmin admin = new HBaseAdmin(cfg);
        if (admin.tableExists(tableName)) {
            try {
                admin.disableTable(tableName);
                admin.deleteTable(tableName);
            } catch (Exception e) {
                e.printStackTrace();
                return false;
            }
        }
        return true;

    }
}

4、hbaseのhbase-site.xmlファイルを/WEB-INF/classesフォルダの下にコピーする:
java api访问 hbase——demo_第1张图片
5、配置運転、出力の表示:
http://localhost:8989/hbasewebt/HBaseServlet
java api访问 hbase——demo_第2张图片
6、hbase shellで表testを見る
java api访问 hbase——demo_第3张图片
実行中に問題が発生した場合、可能な解決策はここにあります.
http://blog.csdn.net/wild46cat/article/details/53288154
ソースのダウンロード:
http://download.csdn.net/detail/wild46cat/9690114