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

【字号: 日期:2024-02-29浏览:24作者:雯心
如何解决不推荐使用HTable(config,tablename)类型。有什么用呢??

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)?

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

相关文章: