Example usage for org.springframework.data.solr.core SolrTemplate SolrTemplate

List of usage examples for org.springframework.data.solr.core SolrTemplate SolrTemplate

Introduction

In this page you can find the example usage for org.springframework.data.solr.core SolrTemplate SolrTemplate.

Prototype

public SolrTemplate(SolrClientFactory solrClientFactory, @Nullable SolrConverter solrConverter) 

Source Link

Usage

From source file:org.springframework.data.solr.core.SolrTemplateTest.java

@Before
public void setUp() {
    solrTemplate = new SolrTemplate(solrServerMock, "core1");
}

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();/*  ww  w. ja v  a 2  s  .c  om*/
    repository.setSolrOperations(template);
}