4

我有多个核心的 apache solr,例如货币、国家等...所以使用 Spring Data Solr 我可以从一个核心检索信息。我现在有这个 XML 配置查询“货币”核心。如果我想查询“国家”核心,我该如何设置?

<!-- Enable Solr repositories and configure repository base package -->
<solr:repositories base-package="com.acme.repository" solr-template-ref="solrCurrencyTemplate"/>

<solr:solr-server id="solrCurrencyServer" url="http://localhost:8983/solr/currency"/>

<bean id="solrCurrencyTemplate" class="org.springframework.data.solr.core.SolrTemplate">
    <constructor-arg ref="solrCurrencyServer" />
</bean>

并将存储库定义为

@Repository
public interface CurrencyRepository extends SolrCrudRepository<Currency, String> {

}

从我的服务中我可以做到这一点

@Override
public List<Currency> getCurrencies() {
    Page<Currency> currencies = (Page<Currency>) currencyRepository.findAll();
    return currencies.getContent();
}

我也尝试过使用@SolrDocument(solrCoreName = "currency")但这不起作用。

@SolrDocument(solrCoreName = "currency")
public class Currency {
    public static final String FIELD_CURRENCY_NAME = "currency_name";
    public static final String FIELD_CURRENCY_CODE = "currency_code";
    public static final String FIELD_DECIMALS = "decimals";

    @Id
    @Field(value = FIELD_CURRENCY_CODE)
    private String currencyCode;

    //currency_name,decimals
    @Field(value = FIELD_CURRENCY_NAME)
    private String currencyName;

    @Field(value = FIELD_DECIMALS)
    private String decimals;

...
...
...
}

我需要尽快帮助...否则我将不得不回到 RestTemplate 解决方案:-(

希望有人可以提供帮助。谢谢总经理

4

5 回答 5

9

想我会分享,我们最近花了很多时间配置多个核心。我们是在 java 中做的,而不是在 xml 中。

作为 spring @configuration 的一部分,添加以下内容。

@Bean(name="solrCore1Template")
public SolrTemplate solrCore1Template() throws Exception {
    EmbeddedSolrServer embeddedSolrServer = new EmbeddedSolrServer(getCoreContainer(), "core1");
    return new SolrTemplate(embeddedSolrServer);
}

@Bean(name="solrCore2Template")
public SolrTemplate solrCore2Template() throws Exception {   
    EmbeddedSolrServer embeddedSolrServer = new EmbeddedSolrServer(getCoreContainer(), "core2");
    return new SolrTemplate(embeddedSolrServer);
}

@Bean
@Scope
public CoreContainer getCoreContainer() throws FileNotFoundException{
    String dir = <path_to_solr_home>;
    System.setProperty("solr.solr.home", dir);
    CoreContainer.Initializer initializer = new CoreContainer.Initializer();
    return initializer.initialize();
}

并在服务类中使用每个模板,如下所示。

@Resource
private SolrTemplate solrCore1Template;

嵌入式服务器可以使用以下代码替换为 HTTP。

HttpSolrServer httpSolrServer = new HttpSolrServer(getSolrURL());
return new SolrTemplate(httpSolrServer, "core1");

希望这可以帮助。我知道对于所提出的问题,这是一个很晚的答复。

于 2014-02-18T09:06:56.697 回答
4

不幸的是,通过命名空间配置支持多核是一个悬而未决的问题。您需要为每个核心拥有一个单独的 SolrTemplate 并手动创建存储库。

@Autowired 
@Qualifier("solrCurrencyTemplate")
private SolrTemplate solrCurrencyTemplate;

@Autowired
@Qualifier("solrCountryTemplate")
private SolrTemplate solrCountryTemplate;

//...

CurrencyRepository currencyRepo = new SolrRepositoryFactory(this.solrCurrencyTemplate)
  .getRepository(CurrencyRepository.class);

CountryRepository countryRepo = new SolrRepositoryFactory(this.solrCountryTemplate)
  .getRepository(CountryRepository.class);
于 2013-05-31T20:55:54.710 回答
2

Spring Data 现在支持多个内核及其各自的存储库。

注释中的 multicoreSupport 标志需要为真,@EnableSolrRepositories并且需要告诉相应的文档它们属于哪个核心。喜欢:

@SolrDocument(solrCoreName = "currency")
public class Currency
{
    // attributes
}

另一个类应该是

@SolrDocument(solrCoreName = "country")
public class Country
{
    // attributes
}

各自的存储库应该知道他们正在使用什么 pojo。

public interface CurrencyRepository extends SolrCrudRepository<Currency,String>
{
}

public interface CountryRepository extends SolrCrudRepository<Country,String>
{
}

和配置应该是

@Configuration
@EnableSolrRepositories(value = "com.package.name",multicoreSupport = true)
public class SolrConfig
{
    @Bean
    public SolrServer solrServer() throws Exception
    {
        HttpSolrServerFactoryBean f = new HttpSolrServerFactoryBean();
        f.setUrl("http://localhost:8983/solr");
        f.afterPropertiesSet();
        return f.getSolrServer();
    }

    @Bean
    public SolrTemplate solrTemplate(SolrServer solrServer) throws Exception
    {
        return new SolrTemplate(solrServer());
    }
}
于 2016-02-13T12:15:25.910 回答
1
<solr:solr-server id="solrServer" timeout="1000" maxConnections="1000" url="${solr.server.1},${solr.server.2}"/>

<bean id="solrServerFactory" class="org.springframework.data.solr.server.support.MulticoreSolrServerFactory">
    <constructor-arg ref="solrServer" />
    <constructor-arg name="cores">
        <list>
            <value>${solr.index.customer}</value>
            <value>${solr.index.task}</value>
        </list>
    </constructor-arg>
</bean>

<bean id="solrTemplate" class="org.springframework.data.solr.core.SolrTemplate">
    <constructor-arg ref="solrServerFactory" />
</bean>

<solr:repositories base-package="com.deve.pig.solr" multicore-support="true" solr-template-ref="solrTemplate" />
于 2014-08-29T07:20:12.000 回答
1

使用 Spring Data Solr 1.1.0.RC1,多核工作如 Christoph Strobl 所述,使用@EnableSolrRepositories. 它也适用于 set 的 XML 配置multicore-support="true"

<solr:repositories base-package="your.solr.repo.package" repository-impl-postfix="Impl" multicore-support="true"/>

<solr:solr-server id="solrServer" url="${solr.server.base.connection.url}" />

<bean id="solrTemplate" class="org.springframework.data.solr.core.SolrTemplate">
    <constructor-arg index="0" ref="solrServer" />
</bean>
于 2014-01-31T22:50:00.377 回答