我们开始在项目中使用spring-data-solr来处理我们需要实现的一些管理用例。
我们的spring-data-solr设置非常简单:
.table {
width: auto;
}
目前,我们正在使用一个 var f_number = document.getElementById("f_number").value;
var f_number = document.getElementById("s_number").value;
扩展<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:solr="http://www.springframework.org/schema/data/solr"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/data/solr http://www.springframework.org/schema/data/solr/spring-solr.xsd">
<solr:repositories base-package="com.any.package" solr-template-ref="solrTemplate"/>
<solr:solr-server id="solrServer" url="http://${solr.host}:${solr.port}${solr.contextPath}" />
<bean id="solrTemplate" class="org.springframework.data.solr.core.SolrTemplate">
<constructor-arg ref="solrServer" />
<constructor-arg value="${solr.storeCore.name}" />
</bean>
,并将其自动装配到Repository
。
关闭Tomcat时,它会在SolrCrudRepository
上挂起10分钟。
除了Controller
- 线程停放之外,Threaddump不提供更多信息。
任何想法?
答案 0 :(得分:0)
正如评论中所提到的:一切都很好用spring-data-solr ...正如所料;-)有一个solr组件,在使用后没有关闭核心。