Spring Restful Services:如何追加“String type”以响应json

时间:2016-07-13 07:59:17

标签: java json spring mongodb rest

我需要从3个Mongodb集合中检索数据:

  • 机场
  • 度假村

度假村和机场的json文档数组,匹配搜索字符串:

  1. 度假村或机场名称
  2. 度假村/机场所属的城市名称。
  3. 度假村有一个json对象,一个用于机场,一个用于城市。

    json文档将包含类别的名称(度假村,机场,city_name)以及一系列匹配的度假村/机场。

    请求映射:/api/destination/resortairport/Lon

    参数:Lon

    回应:

    [ {type: "airport", "airport":
        [
            {"airportcode":"LCY", "airportname": "London City Airport"},
            {"airportcode":"LHR", "airportname": "London Heathrow"},
            {"airportcode":"LTN", "airportname": "London Luton"}
        ]},
      {type: "resort", "resort":[
            {"resortname": "London E Postcodes", "indexid":26447}, 
            {"resortname": "London W Postcodes", "indexid":26448},
            {"resortname": "London N Postcodes", "indexid":26449},
            {"resortname": "London S Postcodes", "indexid":264450}
    ]}]
    

0 个答案:

没有答案