Scala/Lift 中是否存在 XML 和 JSON 可序列化对象的标准特征?
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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?