Merge pull request #5339 from anandshah123/feature/gh-5333

* feature/gh-5333:
  Remove SolrAutoConfiguration @PreDestroy
This commit is contained in:
Phillip Webb 2016-04-10 22:23:51 -07:00
commit 65a41d2f5b
1 changed files with 0 additions and 11 deletions

View File

@ -16,10 +16,6 @@
package org.springframework.boot.autoconfigure.solr;
import java.io.IOException;
import javax.annotation.PreDestroy;
import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.impl.CloudSolrClient;
import org.apache.solr.client.solrj.impl.HttpSolrClient;
@ -51,13 +47,6 @@ public class SolrAutoConfiguration {
this.properties = properties;
}
@PreDestroy
public void close() throws IOException {
if (this.solrClient != null) {
this.solrClient.close();
}
}
@Bean
@ConditionalOnMissingBean
public SolrClient solrClient() {