类 GsonJsonParser

java.lang.Object
org.springframework.boot.json.AbstractJsonParser
org.springframework.boot.json.GsonJsonParser
所有已实现的接口:
JsonParser

public class GsonJsonParser extends AbstractJsonParser
Thin wrapper to adapt Gson to a JsonParser.
从以下版本开始:
1.2.0
作者:
Dave Syer, Jean de Klerk
另请参阅:
  • 构造器详细资料

    • GsonJsonParser

      public GsonJsonParser()
  • 方法详细资料

    • parseMap

      public Map<String,Object> parseMap(String json)
      从接口复制的说明: JsonParser
      Parse the specified JSON string into a Map.
      参数:
      json - the JSON to parse
      返回:
      the parsed JSON as a map
    • parseList

      public List<Object> parseList(String json)
      从接口复制的说明: JsonParser
      Parse the specified JSON string into a List.
      参数:
      json - the JSON to parse
      返回:
      the parsed JSON as a list