如何使用EmbeddedSolrServer和多核支持设置Spring Data Solr?

时间:2014-09-16 12:13:14

标签: spring-data-solr

我正在使用Spring Data Solr在我的项目中实现搜索模块。为了启用多核支持,我只需实例化一个 HttpSolrServer ,然后使用@EnableSolrRepositores(multicoreSupport=true)声明一个基于java的Spring配置类。一切都很完美,直到我尝试为Solr相关代码和模式编写集成测试。

我想使用 EmbeddedSolrServer 进行测试,以便测试可以在不依赖外部Solr服务器的情况下运行,但我找不到正确配置的方法。请指教。

1 个答案:

答案 0 :(得分:5)

此时由于DATASOLR-203而无法直接完成。

解决上述问题后,您可以按照以下方式执行此操作:

@Configuration
@EnableSolrRepositories(multicoreSupport = true)
static class SolrConfiguration {

  @Bean
  SolrServer solrServer() throws FileNotFoundException {

    String solrHome = ResourceUtils.getURL("classpath:your/path/here").getPath();
    CoreContainer container = CoreContainer.createAndLoad(solrHome, new File(solrHome + "/solr.xml"));

    return new EmbeddedSolrServer(container, null);
  }
}