Package org.springframework.boot.json
Interface JsonParser
- All Known Implementing Classes:
- AbstractJsonParser,- BasicJsonParser,- GsonJsonParser,- JacksonJsonParser
public interface JsonParser
- Since:
- 1.0.0
- See Also:
- 
Method Summary
- 
Method Details- 
parseMapParse the specified JSON string into a Map.- Parameters:
- json- the JSON to parse
- Returns:
- the parsed JSON as a map
- Throws:
- JsonParseException- if the JSON cannot be parsed
 
- 
parseListParse the specified JSON string into a List.- Parameters:
- json- the JSON to parse
- Returns:
- the parsed JSON as a list
- Throws:
- JsonParseException- if the JSON cannot be parsed
 
 
-