0
使用json4s,將JSON反序列化爲Scala case類(不帶索引鍵)的最佳實踐是什麼?如何使用json4s反序列化沒有索引的json
some.json
{
"1": {
"id": 1,
"year": 2014
},
"2": {
"id": 2,
"year": 2015
},
"3": {
"id": 3,
"year": 2016
}
}
some case class case class Foo(id: Int, year: Int)
它不應該是'地圖[字符串,富]'? –