我试图使用PolymorphicJsonAdapterFactory
来获取不同的类型,但总是会遇到奇怪的异常:
缺少test_type标签
我的实体:
@JsonClass(generateAdapter = true)
data class TestResult(
@Json(name = "test_type") val testType: TestType,
...
@Json(name = "session") val session: Session,
...
)
这是我的moshi工厂:
val moshiFactory = Moshi.Builder()
.add(
PolymorphicJsonAdapterFactory.of(Session::class.java, "test_type")
.withSubtype(FirstSession::class.java, "first")
.withSubtype(SecondSession::class.java, "second")
)
.build()
json响应的结构:
{
response: [
test_type: "first",
...
]
}
答案 0 :(得分:1)
test_type 必须是会话类的字段。
如果 test_type 不能在会话类中,则必须为TestResult的每个变体声明一个包含特定Session类的类,如下所示:
sealed class TestResultSession(open val testType: String)
@JsonClass(generateAdapter = true)
data class TestResultFirstSession(
@Json(name = "test_type") override val testType: String,
@Json(name = "session") val session: FirstSession
) : TestResultSession(testType)
@JsonClass(generateAdapter = true)
data class TestResultSecondSession(
@Json(name = "test_type") override val testType: String,
@Json(name = "session") val session: SecondSession
) : TestResultSession(testType)
和您的moshi多态适配器:
val moshiFactory = Moshi.Builder()
.add(
PolymorphicJsonAdapterFactory.of(TestResultSession::class.java,"test_type")
.withSubtype(TestResultFirstSession::class.java, "first")
.withSubtype(TestResultSecondSession::class.java, "second")
)
.build()
始终提供备用广告是一种很好的做法,因此在 test_type 未知的情况下,反序列化不会失败:
@JsonClass(generateAdapter = true)
data class FallbackTestResult(override val testType: String = "") : TestResultSession(testType)
val moshiFactory = Moshi.Builder()
.add(
PolymorphicJsonAdapterFactory.of(TestResultSession::class.java,"test_type")
.withSubtype(TestResultFirstSession::class.java, "first")
.withSubtype(TestResultSecondSession::class.java, "second")
.withDefaultValue(FallbackTestResult())
)
.build()