类 BasicJsonParser
java.lang.Object
org.springframework.boot.json.AbstractJsonParser
org.springframework.boot.json.BasicJsonParser
- 所有已实现的接口:
JsonParser
Really basic JSON parser for when you have nothing else available. Comes with some
limitations with respect to the JSON specification (e.g. only supports String values),
so users will probably prefer to have a library handle things instead (Jackson or Snake
YAML are supported).
- 从以下版本开始:
- 1.2.0
- 作者:
- Dave Syer, Jean de Klerk, Stephane Nicoll
- 另请参阅:
-
构造器概要
构造器 -
方法概要
从类继承的方法 org.springframework.boot.json.AbstractJsonParser
parseList, parseMap, trimParse, tryParse
-
构造器详细资料
-
BasicJsonParser
public BasicJsonParser()
-
-
方法详细资料
-
parseMap
从接口复制的说明:JsonParser
Parse the specified JSON string into a Map.- 参数:
json
- the JSON to parse- 返回:
- the parsed JSON as a map
-
parseList
从接口复制的说明:JsonParser
Parse the specified JSON string into a List.- 参数:
json
- the JSON to parse- 返回:
- the parsed JSON as a list
-