Elasticsearch に Spring Data REST を使用しようとしています。POST 用の組み込み REST コントローラーが機能していないようです: ドキュメントを投稿しようとすると、エラーが発生します。この問題は簡単に再現できます: シンプルなエンティティを作成しました:
@Document(indexName = "user", type = "user", shards = 1, replicas = 0, refreshInterval = "-1")
public class Customer {
@Id
private String id;
@Field(type = FieldType.String, store = true)
private String firstName;
@Field(type = FieldType.String, store = true)
private String lastName;
// getters and setters are skipped
}
リポジトリ:
public interface UserRepository extends ElasticsearchRepository<User, String> {
}
すべてのユーザーを取得しようとすると、次の応答が返されます。
curl -X GET "http://localhost:9000/users"
{
"_links" : {
"self" : {
"href" : "http://localhost:9000/users{?page,size,sort}",
"templated" : true
},
"search" : {
"href" : "http://localhost:9000/users/search"
}
},
"page" : {
"size" : 20,
"totalElements" : 0,
"totalPages" : 0,
"number" : 0
}
}
しかし、ユーザーを追加しようとすると:
curl -i -X POST -H "Content-Type:application/json" http://localhost:9000/users -d '{"id":"4e9e62aa-7312-42ed-b8e4-24332d7973cd","firstName":"test","lastName":"test"}'
エラーが発生します:
{"cause":null,"message":"PersistentEntity must not be null!"}
コメントなしでこの課題に対して開かれた Jira チケットがあるようです: Jira 課題
Spring Data Elasticsearch の CRUD REST コントローラーを作成することを避けることができるかどうか疑問に思っていますか?