Examples of GemfireRepositoryConfigurationExtension


Examples of org.springframework.data.gemfire.repository.config.GemfireRepositoryConfigurationExtension

class GemfireDataNamespaceHandler extends NamespaceHandlerSupport {

  @Override
  public void init() {
    // Repository namespace
    RepositoryConfigurationExtension extension = new GemfireRepositoryConfigurationExtension();
    registerBeanDefinitionParser("repositories", new RepositoryBeanDefinitionParser(extension));
    registerBeanDefinitionParser("function-executions", new FunctionExecutionBeanDefinitionParser());
    registerBeanDefinitionParser("datasource", new GemfireDataSourceParser());
    registerBeanDefinitionParser("json-region-autoproxy", new GemfireRegionAutoProxyParser());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.