不推荐使用HTable(config,tablename)类型 有什么用呢?

网编 207 0

Connection Table*

从 ,使用Connection.getTable(TableName)检索表实现。

Connection connection = ConnectionFactory.createConnection(config);

Table table = connection.getTable(TableName.valueOf("table1"));

try 
{
   // Use the table as needed, for a single operation and a single thread
} 
finally
{
   table.close ;
   connection.close ;
}
解决方法

我可以用什么代替HTable(config,tablename)?

不建议使用此方法。在每个示例中,我都可以发现他们使用了此构造器或另一个不推荐使用的构造器。

标签: #getTable #方法 #config

  • 评论列表

留言评论