标签: java serialization avro kafka-producer-api
我的avro架构中有以下日期字段声明,可以为可空或可选:
{ "name" : "expiryDate", "type" : ["null", { "type" : "int", "logicalType" : "date" }], "source" : "element tradingExpiryDate" },
生成avro类效果很好,但是在字段序列化过程中会遇到nullpointerexception。
有没有办法解决这个问题?