问题描述
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)
?
不建议使用此方法。在每个示例中,我都可以发现他们使用了此构造器或另一个不推荐使用的构造器。