class SolrTemplateProducer {
@Produces
public SolrOperations createSolrTemplate() throws IOException, ParserConfigurationException, SAXException {
EmbeddedSolrServerFactory factory = new EmbeddedSolrServerFactory(ResourceUtils.getURL(
"classpath:org/springframework/data/solr").getPath());
SolrTemplate template = new SolrTemplate(factory);
template.afterPropertiesSet();
return template;