我对 Spring Data 和 HBase 很感兴趣。我在我的 pom 中包含了这个 jar:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-hadoop</artifactId>
<version>1.0.1.RELEASE</version>
</dependency>
我看到一些关于使用 HbaseTemplate 类的参考资料。
这些示例都具有基于 XML 的 Spring HBase 配置。我正在使用注释基本配置,
// default HBase configuration
<hdp:hbase-configuration/>
// wire hbase configuration (using default name 'hbaseConfiguration') into the template
<bean id="htemplate" class="org.springframework.data.hadoop.hbase.HbaseTemplate" p:configuration-ref="hbaseConfiguration"/>
我如何从注释中做到这一点,例如:
@Bean
@Named("hbaseTemplate")
public HbaseTemplate hbaseTemplate() {
return new HbaseTemplate();
}
我尝试了这种方法,但失败了。