关于this article
我想使用我自己的SolrTemplate
手动设置存储库。这是因为我有多个正在运行的Solr实例,并且我希望每个实例都有一个回购协议。这是我的工作:
Bean定义:
<bean id="currencySolrServer" class="org.apache.solr.client.solrj.impl.HttpSolrServer">
<constructor-arg value="${solr.server.currency.url}" index="0"/>
</bean>
<bean id="currencySolrTemplate" class="org.springframework.data.solr.core.SolrTemplate">
<constructor-arg index="0" ref="currencySolrServer"/>
</bean>
我有一个非常基本的存储库:
@Component
public interface CurrencyRepository extends SolrCrudRepository<SolrInputDocument, String>
{
}
服务类别:
@Service
public class SolrService
{
@Resource
@Qualifier("currencySolrTemplate")
SolrTemplate currencySolrTemplate;
private CurrencyRepository repository;
/*init the repo*/
@PostConstruct
public void init()
{
log.debug("Creating SolrRepository");
repository = new SolrRepositoryFactory(currencySolrTemplate)
.getRepository(CurrencyRepository.class);
log.debug( "SolrRepositiory created" );
}
}
根据引用的文章,鲍勃是我的叔叔,但是,相反,它在
init()
方法中通过以下方式炸毁:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'CurrencyRepository': Cannot resolve reference to bean 'solrTemplate' while setting bean property 'solrOperations'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'solrTemplate' is defined
对。约定优于配置。尽管我已经给自己指定了
CurrencyRepository
,但为什么SolrTemplate
仍在寻找对默认currencySolrTemplate
的引用? 最佳答案
找到了!我的上下文文件中有一个旧行:
<solr:repositories base-package="com.sundberg.solr.repository"/>
某种程度上,这导致存储库寻找默认的solrTemplate。删除此行解决了问题。随时分享一些启示。总的来说,Spring的Solr框架的文档不是很全面。