我自横刀向天笑,去留肝胆两昆仑。这篇文章主要讲述solr exception预期的mime类型application / octet-stream但是得到了text / html相关的知识,希望能为你提供帮助。
嗨,我试图使用spring boot data solr索引solr中的实体。但我得到例外
Caused by: org.apache.solr.client.solrj.impl.HttpSolrClient$RemoteSolrException: Error from server at http://localhost:8983/solr/portal: Expected mime type application/octet-stream but got text/html. <
html>
<
head>
<
meta http-equiv="Content-Type" content="text/html;
charset=UTF-8"/>
<
title>
Error 404 Not Found<
/title>
<
/head>
<
body>
<
h2>
HTTP ERROR 404<
/h2>
<
p>
Problem accessing /solr/portal/publishers/update. Reason:
<
pre>
Not Found<
/pre>
<
/p>
<
hr>
<
i>
<
small>
Powered by Jetty://<
/small>
<
/i>
<
hr/>
<
/body>
<
/html>
这是我的出版商课程
@SolrDocument
public class Publishers {@Id
@Field
private String advID;
@Field
private String name;
@Field
private String domain;
@Field("cat")
private String categories;
//getters and setters
}
我的存储库界面
public interface BookRepository extends SolrCrudRepository<
Publishers, String>
{List<
Publishers>
findByName(String name);
}
我的基本网址是
"http://localhost:8983/solr/portal"
。在我的主类代码如下@Resource
BookRepository repository;
@Override
public void run(String... strings) throws Exception {
this.repository.save(new Publishers("4", "Sony Playstation","none", null));
}
【solr exception预期的mime类型application / octet-stream但是得到了text / html】更新我发现实体类即
Publishers
名称会自动附加到URL。我不知道如何告诉应用程序在向solr发送调用时不要在solr URL中附加名称。谁能帮我。提前致谢答案您应该将您的solr文档注释为@SolrDocument(solrCoreName =“YOU_CORE_NAME”)
另一答案检查您的网址是否正确。
推荐阅读
- Android - 使用ArrayList作为Holder防止RecyclerView中的重复项
- Java读取数据POST内容类型application / x-www-form-urlencoded
- 如何在Android MVVM架构中实现对话框选择选项
- Zappa部署错误(GET请求产生502响应代码)
- QQuickWindow在共享lib自动关闭时在QApplication中显示
- UIActivityIndi cator添加AppDelegate
- 如何使用swift从Xcode coco app运行像FFMPEG这样的终端程序()
- 具有本地化app.staticTexts的UI测试(XCTest)
- 编译Android Studio Vulkan示例