これが私のデータのテーブル構造です。solrでデータにインデックスを付けたいので、solr6 DIHを使用してmysql dataSourceでデータにインデックスを付けているので、次の形式でテーブルデータにインデックスを付けるにはどうすればよいですか。
---------------------------------------
| id | name | en | hi | sp |
---------------------------------------
| 1 | test | test| परीक्षण | prueba |
---------------------------------------
| 2 | test1 | test1| परीक्षण1 | prueba1 |
---------------------------------------
{
id:1,
name:test,
trans{
en:test,
hi:परीक्षण,
sp:prueba,
}
}
{
id:2,
name:test1,
trans{
en:test1,
hi:परीक्षण1,
sp:prueba1,
}
}