帮助我,我想从数据库中查询数据并将其保存为json格式,然后将响应发送给客户机。
implicit val locationWrites1: Writes[Location] = (
(JsPath \ "id").write[String] and
(JsPath \ "desc").write[String]
) (unlift(Location.unapply))
db.withConnection { conn =>
val stm = conn.createStatement()
val res = stm.executeQuery(
"""
SELECT notes_id,notes_desc FROM notes
"""
)
while (res.next()) {
Location(res.getString(1), (res.getString(2)))
}
}
val result = Json.toJson(locationWrites1)
Ok(result)
在此处输入图像描述
1条答案
按热度按时间vltsax251#
您应该先将这些位置保存在变量中。此代码只是从数据库读取数据,不将其存储在任何位置:
你必须保持这样的结果:
然后创建一个序列格式,如下所示:
然后将列表转换为json字符串: