Scala/Lift 中是否存在 XML 和 JSON 可序列化对象的标准特征?

发布于 2024-12-10 19:18:37 字数 225 浏览 0 评论 0原文

在我的 Lift 项目中,我使用了自己的一个特点:


import scala.xml.Node
import net.liftweb.json.JsonAST.JValue

trait Serializable {
  def toXml : Node
  def toJson : JValue
}

我不是在“重新发明自行车”吗?难道没有一个共同的标准库特征吗?

In my Lift projects I use a trait of my own:


import scala.xml.Node
import net.liftweb.json.JsonAST.JValue

trait Serializable {
  def toXml : Node
  def toJson : JValue
}

Am I not "reinventing a bycicle"? Isn't it there a common standard library trait for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白日梦 2024-12-17 19:18:37

Record有一个asJSON方法,你可以使用net.liftweb.json.XML将json转为xml。你不想混合 Record 因为它对于你的对象来说太多了吗?

Record has an asJSON method, and you can use net.liftweb.json.XML to turn json into xml. Do you not want to mixin Record because it is too much for your objects?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文