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

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

Introduction

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

Prototype

@Override
    public void afterPropertiesSet() 

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();
    repository.setSolrOperations(template);
}