Expected mime type application/octet-stream but got text/html.

she_smiled發表於2017-11-10

在執行solr技術的工程的時候出現Expected mime type application/octet-stream but got text/html.錯誤


網上找的原因有:

在使用Tomcat部署Solr後,Collection1的地址為:http://ip:8080/solr/#/collection1,但使用SolrJ進行索引的時候,應該使用http://ip:8080/solr/collection1,即無中間的#號。

即正確程式碼為:

  1. String serverUrl = (args != null && args.length > 0) ? args[0]  
  2.                 : "http://ip:8080/solr/collection1";  
錯誤程式碼為:
  1. String serverUrl = (args != null && args.length > 0) ? args[0]  
  2.                 : "http://ip:8080/solr/#/collection1"


但是我的是因為solrServer配置出錯,正確的應該是:
    <bean id="httpSolrServer" class="org.apache.solr.client.solrj.impl.HttpSolrServer">
        <constructor-arg index="0" value="http://localhost:8081/solr"/>
    </bean>

同時應該開啟tomcat伺服器中的startup.bat。這樣子solr才能訪問成功

相關文章