0
liferayのデータを含むカスタムテーブルを追加しました。今私は弾性検索でそれらのデータを検索したいと思います。データを取得する方法は何でしょうか。 service.xmlにカスタムテーブルの追加エンティティを追加し、弾性検索URLサンプルhttp://localhost:9200からこれらのデータを検索したいとします。liferayでカスタムテーブルを追加する方法7弾性検索
<entity local-service="true" name="Student" remote-service="true"
uuid="true">
<column name="studentId" primary="true" type="long" />
<column name="name" type="String" />
<column name="sollNumber" type="int" />
<column name="entryDate" type="Date" />
<order by="asc">
<order-column name="name" />
</order>
<finder name="Name" return-type="Collection">
<finder-column name="name" />
</finder>
</entity>
私はあなたはmake your entity an Assetを
Lifelineを使用して手動でElasticsearchのインデックスを作成しますか? – Biswajit