作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法将 org.joda.time.DateTime 字段从 JSON 反序列化为案例类。
JSON:val ajson=parse(""" { "creationDate": "2013-01-02T10:48:41.000-05:00" }""")
我还设置了这些序列化选项:implicit val formats = Serialization.formats(NoTypeHints) ++ net.liftweb.json.ext.JodaTimeSerializers.all
和反序列化:val val1=ajson.extract[Post]
邮政是:case class Post(
创建日期 : DateTime){ ... }
我得到的异常(exception)是:
net.liftweb.json.MappingException: No usable value for creationDate
Invalid date format 2013-01-02T10:48:41.000-05:00
val date3= new DateTime("2013-01-05T06:24:53.000-05:00")
它使用与反序列化相同的来自 JSON 的日期字符串。这里发生了什么事?
最佳答案
好像是DateParser
Lift 默认使用的格式。中挖the code ,可以看到解析器尝试使用 DateParser.parse(s, format)
在将结果传递给 org.joda.time.DateTime
的构造函数之前.
object DateParser {
def parse(s: String, format: Formats) =
format.dateFormat.parse(s).map(_.getTime).getOrElse(throw new MappingException("Invalid date format " + s))
}
case object DateTimeSerializer extends CustomSerializer[DateTime](format => (
{
case JString(s) => new DateTime(DateParser.parse(s, format))
case JNull => null
},
{
case d: DateTime => JString(format.dateFormat.format(d.toDate))
}
))
yyyy-MM-dd'T'HH:mm:ss.SSS'Z'
case object MyDateTimeSerializer extends CustomSerializer[DateTime](format => (
{
case JString(s) => tryo(new DateTime(s)).openOr(throw new MappingException("Invalid date format " + s))
case JNull => null
},
{
case d: DateTime => JString(format.dateFormat.format(d.toDate))
}
))
net.liftweb.json.ext.JodaTimeSerializers.all
关于scala - 如何在 Lift 中反序列化 DateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15980753/
我是一名优秀的程序员,十分优秀!