Example usage for org.springframework.data.solr.repository ExampleSolrBeanRepository ExampleSolrBeanRepository

List of usage examples for org.springframework.data.solr.repository ExampleSolrBeanRepository ExampleSolrBeanRepository

Introduction

In this page you can find the example usage for org.springframework.data.solr.repository ExampleSolrBeanRepository ExampleSolrBeanRepository.

Prototype

ExampleSolrBeanRepository

Source Link

Usage

From source file:org.springframework.data.solr.repository.ITestSimpleSolrRepository.java

@Before
public void setUp() {
    repository = new ExampleSolrBeanRepository();
    SolrTemplate template = new SolrTemplate(solrServer, null);
    template.afterPropertiesSet();//from  www .  j a v a 2 s  . c om
    repository.setSolrOperations(template);
}