1

这是我的数据表结构,我想用 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,
   }
  }
4

0 回答 0