我正在尝试将对象发送给远程角色,但出现了以下异常:

ERROR akka.remote.EndpointWriter - Transient association error (association remains live)
java.io.NotSerializableException: scala.collection.immutable.MapLike$$anon$2

被序列化的对象是一个case类:
case class LocationReport(idn: String, report: String, timestamp: Option[String], location: Attr, status: Attr, alarms: Attr, network: Attr, sensors: Attr) extends Message(idn) {

  val ts = timestamp getOrElse location("fix_timestamp")

  def json =
    (report ->
      ("TIME" -> ts) ~
      ("location" -> location) ~
      ("alarms" -> alarms) ~
      ("network" -> network) ~
      ("sensors" -> ((status ++ sensors) + ("CUSTOMCLOCK" -> Report.decodeTimestamp(ts)))))
}
Attr是一种类型的重新定义:
type Attr = Map[String, String]
Message类非常简单:
abstract class Message(idn: String) {
  def topic = idn
  def json(): JValue
}

我想知道别名/重新定义类型是否会使序列化程序感到困惑。我想我正在使用ProtoBuf序列化,但是我确实在stacktrace中看到了JavaSerializer

更多调试信息

我更新了JavaSerializer,并分别序列化了每个Map。只有一个(alarms)无法序列化。这是它们每个的toString:

这个失败了:
alarms = Map(LOWBATTERY -> 1373623446000)

这些成功了:
location = Map(a_value -> 6, latitude -> 37.63473, p_value -> 4, longitude -> -97.41459, fix_timestamp -> 3F0AE7FF, status -> OK, fix_type -> MSBL, CUSTOMCLOCK -> 1373644159000)
network = Map(SID -> 1271, RSSI -> 85)
sensors = Map(HUMIDITY -> -999, PRESSURE -> -999, LIGHT -> -999  9:52 AM)
status = Map(TEMPERATURE_F -> 923, CYCLE -> 4, TEMPERATURE1_C -> 335, CAP_REMAINING -> 560, VOLTAGE -> 3691, CAP_FULL -> 3897)

最佳答案

问题在于Map.mapValues产生了一个不可序列化的对象。创建警报后,它会通过类似alarms.mapValues(hex2Int)的方式运行。问题和解决方法在此处进行了描述:

https://issues.scala-lang.org/browse/SI-7005

简而言之,解决方案是做alarms.mapValues(hex2Int).map(identity)

10-08 00:07