Ошибка при обнаружении ассоциации при индексации данных в Solr с использованием Spring-Data-Solr - PullRequest
0 голосов
/ 26 ноября 2018

Я испытываю пример приложения-службы Spring Data MongoDB + Solr Data Solr, где MongoDB используется для сохранения данных и Solr для индексации и поиска.

Операция сохранения в MongoDB успешно выполняется в службеучебный класс.Но при вызове метода SolrOperation save() служба аварийно завершает работу с журналом ошибок, как показано ниже:

SEVERE [com.sun.jersey.spi.container.ContainerResponse] (defaulttask-1)The 
RuntimeException could not be mapped to a response, re-throwing the HTTP 
container:org.springframework.data.solr.UncategorizedSolrException:No
association fond!; nested exception is java.lang.IllegalStateException: No 
association found! at     org.springframework.data.solr.core.SolrTemplate.execute(SolrTemplate.java:171)

Когда я анализирую журнал глубже, он говорит:

Caused by: java.lang.IllegalStateException:No association found!
at org.springframework.data.mapping.PersistentProperty.getRequiredAssociation(PersistentProperty.java:166)

строка getConverter().write(bean, document) внутри convertBeanToSolrInputDocument () внутри SolrTemplate выдает ошибку.

Метод DAO

public String addToRepo(MyEntity myEntity){
mongoOperation.save(myEntity); //works fine data saved to MongoDB
solrOperation.save("collectionName",myEntity); //generates above exception
return "success";
}

Я использую Spring 5 + solrj-6.1.0 + spring-data-solr-4.0.2.

solroperation был правильно загружен как:

ApplicationContext SOLR_CONFIG_APP_CTX = new AnnotationConfigApplicationContext(SpringSolrConfig.class);
SolrOperations solrOperation = (SolrOperations)ctx.getBean("solrTemplate");

public static final SolrOperations SOLR_OPS=
(SolrOperations)SOLR_CONFIG_APP_CTX.getBean("solrTemplate");

SpringSolrConfig.java

@Configuration
public class SpringSolrConfig extends AbstractSolrConfig {
public SolrClientFactory solrClientFactory (){
SolrClient solrClient = new HttpSolrClient.Builder(solrUrl).build();
HttpSolrClientFactory solrClientFactory = new HttpSolrClientFactory (solrClient);
return solrClientFactory;
}
}

Файл SpringConfig.xml выглядит следующим образом:

<mongo:mongo host="195.168.1.140" port="27017"/>
<mongo:dbfactory dbname="myDB"/>
<bean id="mongoTemplate"
class="org.springframework.data.mongodb.core.MongoTemplate">
<constructor-arg-name="mongoDbFactory" ref="mongoDbFactory"/>
</bean>
<repositories base-package="sample.package.repositories"/>
<bean id="myEntityRepo" class="sample.package..repositories.MyEntityRepositoryInterface"/>
<solr:repositories base-package="sample.package.repositories"/>
<solr:sorl-server id="solrServer" url="http://localhost:8983/solr"/>
<bean id="solrTemplate" class="org.springframework.data.solr.core.SolrTemplate">
<constructor-arg index="0" ref="solrServer"/>
</bean>

Заранее спасибо за помощь в устранении этой проблемы!

1 Ответ

0 голосов
/ 27 ноября 2018

Я обновил свой файл SpringSolrConfig, как показано ниже, чтобы устранить проблему.Предоставлено: https://jira.spring.io/browse/DATASOLR-394

    @Configuration
    public class SpringSolrConfig extends AbstractSolrConfig {

    String solrUrl = "http://localhost:8983/solr/"; // TODO read this ideally from spring-configuration.xml file
    public SolrClientFactory solrClientFactory (){
    SolrClient solrClient = new HttpSolrClient.Builder(solrUrl).build();
    HttpSolrClientFactory solrClientFactory = new HttpSolrClientFactory (solrClient);
    return solrClientFactory;
    }

    @Bean
    public SolrTemplate solrTemplate () {
    SolrTemplate solrTemplateObj = new SolrTemplate(solrClientFactory));
    // This ensures that the default MappingSolrConverter.java is not used for converting the bean to a Solr Document before indexing
    solrTemplateObj.setSolrConverter(new SolrJConverter());
    return solrTemplateObj;
    }

    }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...