当前位置: 首页>>代码示例>>Java>>正文


Java DataStoreFactory.findProperty方法代码示例

本文整理汇总了Java中org.apache.gora.store.DataStoreFactory.findProperty方法的典型用法代码示例。如果您正苦于以下问题:Java DataStoreFactory.findProperty方法的具体用法?Java DataStoreFactory.findProperty怎么用?Java DataStoreFactory.findProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.gora.store.DataStoreFactory的用法示例。


在下文中一共展示了DataStoreFactory.findProperty方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: initialize

import org.apache.gora.store.DataStoreFactory; //导入方法依赖的package包/类
/** 
 * Initialize is called when then the call to 
 * {@link org.apache.gora.store.DataStoreFactory#createDataStore(Class<D> dataStoreClass, Class<K> keyClass, Class<T> persistent, org.apache.hadoop.conf.Configuration conf)}
 * is made. In this case, we merely delegate the store initialization to the 
 * {@link org.apache.gora.cassandra.store.CassandraClient#initialize(Class<K> keyClass, Class<T> persistentClass)}. 
 */
public void initialize(Class<K> keyClass, Class<T> persistent, Properties properties) {
  try {
    super.initialize(keyClass, persistent, properties);
    if (autoCreateSchema) {
      // If this is not set, then each Cassandra client should set its default
      // column family
      colFamConsLvl = DataStoreFactory.findProperty(properties, this, COL_FAM_CL, null);
      // operations
      readOpConsLvl = DataStoreFactory.findProperty(properties, this, READ_OP_CL, null);
      writeOpConsLvl = DataStoreFactory.findProperty(properties, this, WRITE_OP_CL, null);
    }
    this.cassandraClient.initialize(keyClass, persistent, properties);
  } catch (Exception e) {
    LOG.error(e.getMessage(), e);
  }
}
 
开发者ID:jianglibo,项目名称:gora-boot,代码行数:23,代码来源:CassandraStore.java


注:本文中的org.apache.gora.store.DataStoreFactory.findProperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。