使用Gson,我想反序列化包含惰性属性的Kotlin类。
使用Kotlin 1.0 beta 4,在对象反序列化期间出现以下错误:
Caused by: java.lang.InstantiationException: can't instantiate class kotlin.Lazy
使用Kotlin 1.0 beta 2,我曾经用@Transient annotaiton标记该属性,告诉Gson跳过它。对于beta 4,这是不可能的,因为注释会导致编译错误。
This annotation is not applicable to target 'member property without backing field'
我无法弄清楚如何解决这个问题。有什么想法吗?
编辑:lazy属性被序列化为JSON("my_lazy_prop$delegate":{}
),但这不是我想要的,因为它是从其他属性计算的。我想如果我找到一种方法来阻止该属性被序列化,那么将会修复反序列化崩溃。
答案 0 :(得分:33)
由于Kotlin 1.0只是在de / serialization期间将这样的字段标记为忽略它:
JSONArray jArray=new JSONArray(yourString);
String str=jArray.getString(0);;
if(str.equalsIgnoreCase("true")
{
//your code
}else
{
}
答案 1 :(得分:9)
原因是delegate
字段实际上不是支持字段,因此被禁止。其中一个解决方法是实施ExclusionStrategy
:https://stackoverflow.com/a/27986860/1460833
类似的东西:
@Retention(AnnotationRetention.RUNTIME)
@Target(AnnotationTarget.FIELD, AnnotationTarget.PROPERTY)
annotation class GsonTransient
object TransientExclusionStrategy : ExclusionStrategy {
override fun shouldSkipClass(type: Class<*>): Boolean = false
override fun shouldSkipField(f: FieldAttributes): Boolean =
f.getAnnotation(GsonTransient::class.java) != null
|| f.name.endsWith("\$delegate")
}
fun gson() = GsonBuilder()
.setExclusionStrategies(TransientExclusionStrategy)
.create()
查看相关票证https://youtrack.jetbrains.com/issue/KT-10502
另一种解决方法是序列化延迟值:
object SDForLazy : JsonSerializer<Lazy<*>>, JsonDeserializer<Lazy<*>> {
override fun serialize(src: Lazy<*>, typeOfSrc: Type, context: JsonSerializationContext): JsonElement =
context.serialize(src.value)
override fun deserialize(json: JsonElement, typeOfT: Type, context: JsonDeserializationContext): Lazy<*> =
lazyOf<Any?>(context.deserialize(json, (typeOfT as ParameterizedType).actualTypeArguments[0]))
}
class KotlinNamingPolicy(val delegate: FieldNamingStrategy = FieldNamingPolicy.IDENTITY) : FieldNamingStrategy {
override fun translateName(f: Field): String =
delegate.translateName(f).removeSuffix("\$delegate")
}
用法示例:
data class C(val o: Int) {
val f by lazy { 1 }
}
fun main(args: Array<String>) {
val gson = GsonBuilder()
.registerTypeAdapter(Lazy::class.java, SDForLazy)
.setFieldNamingStrategy(KotlinNamingPolicy())
.create()
val s = gson.toJson(C(0))
println(s)
val c = gson.fromJson(s, C::class.java)
println(c)
println(c.f)
}
将产生以下输出:
{"f":1,"o":0}
C(o=0)
1
答案 2 :(得分:1)
如其他答案所解释,委托字段不应序列化。
您可以按照@Fabian Zeindl的建议,在委托字段中使用transient
来实现:
@delegate:Transient
val field by lazy { ... }
或跳过@ {Sergey Mashkov提出的GsonBuilder
中的所有委托字段:
GsonBuilder().setExclusionStrategies(object : ExclusionStrategy {
override fun shouldSkipClass(type: Class<*>): Boolean = false
override fun shouldSkipField(f: FieldAttributes): Boolean = f.name.endsWith("\$delegate")
}
但是,如果您的类没有无参数构造函数,则可能会遇到NullPointerException
。
之所以发生这种情况是因为,当Gson找不到无参数的构造函数时,它将使用ObjectConstructor
和UnsafeAllocator
并通过反射来构造对象。 (请参见https://stackoverflow.com/a/18645370)。这将删除Kotlin创建的委托字段。
要解决此问题,请在您的类中创建一个无参数的构造函数,或使用Gson InstanceCreator
为Gson提供默认对象。
GsonBuilder().registerTypeAdapter(YourClass::class, object : InstanceCreator<YourClass> {
override fun createInstance(type: Type?) = YourClass("defaultValue")
})