我有 joda Datetime 字段的案例类:
case DomainPositionData(domain: String, position: Int, change: Option[Int], date:DateTime)
尝试使用宏生成读写器:
implicit val domPosFormat = Macros.handler[DomainPositionData]
我有:
Implicit org.joda.time.DateTime for 'value date' not found
但我还没有找到如何实现我自己的隐式转换器的信息。