使用Java API获取映射中每个字段的类型(String,Boolean,Int,Nested等)

时间:2014-07-08 13:15:48

标签: java elasticsearch

我希望在使用java API的映射中获取所有字段的类型。

有了这个,我可以检索所有字段:

ClusterState cs = Client.admin().cluster().prepareState().execute().actionGet().getState();
IndexMetaData imd = cs.getMetaData().index(customerName);
MappingMetaData mmd = imd.mapping(type);
Map<String, Object> source = mmd.sourceAsMap();
for (String i : source.keySet()) {
        JSONObject jsonSource = null;
            try {
                jsonSource = new JSONObject(source.get(i).toString());
            } catch (JSONException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            Iterator<?> iterator = jsonSource.keys();
            while (iterator.hasNext()) {
                listFields.add(iterator.next().toString());
            }

        }

我在MappingMetaData中查找了方法,但是没有任何东西能给我字段的类型(例如:string,float,int等)。我需要在字段列表中只返回核心类型(不是嵌套或内部对象)

1 个答案:

答案 0 :(得分:1)

你可以使用Jackson的JsonNode:

MappingMetaData mmd = imd.mapping(type);
CompressedString source = mmd.source();
JsonNode mappingNode = new ObjectMapper().readTree(source));

JsonNode propertiesNode = mappingNode.get("properties");
Iterator<Entry<String, JsonNode>> properties = propertiesNode.fields();
while (properties.hasNext()) {

  Entry<String, JsonNode> node = properties.next();
  String name = node.getKey();
  JsonNode valueNode = node.getValue();
  if (valueNode != null) {
    String type = valueNode.get("type").asText();//gives you the type
  }
}