I am new in scala developing and maybe it's repeated question here, trying to parse json by circe lib, I know how to parse json to get specific value from it but I want to it dynamically by giving json path for any json. For example we have this json below like input, and json path like this $.store.book[*].author
{
"store": {
"book": [
{
"category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{
"category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{
"category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{
"category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
},
"expensive": 10
}
and output will be like this:
[
"Nigel Rees",
"Evelyn Waugh",
"Herman Melville",
"J. R. R. Tolkien"
]
by using jayway I can do it in easy way, but I want to do it by using circe. below code where I am using jayway
val fileStream = getClass.getResourceAsStream("/sample_json.json")
var rawJson: String = Source.fromInputStream(fileStream).getLines.mkString.stripMargin
val jsonPath: String = "$..book[2]"
val result = JsonPath.read[AnyVal](rawJson, jsonPath)