作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个具有第三方不可序列化属性的类,我需要将其发送到使用该类的一种方法的 UDAF。
由于不可序列化属性,我无法添加“实现可序列化”,并且我无法创建子类包装器,因为该属性在其构造函数中需要一个参数...
有什么想法吗?
public class ClassWithNoSerializableProperty implements Serializable {
private NoSerializable property;
public ClassWithNoSerializableProperty (String text) {
property = new NoSerializable(text);
}
}
public class NoSerializable {
protected String text;
public NoSerializable(String text) {
this.text = text;
}
}
最佳答案
使用此类来包装NoSerialized
的构造函数
SerializedWrapper<NoSerializable> property = new SerializedWrapper(() -> new NoSerializable(text));
// call this to use it.
property.get();
/**
* Makes an unserializable class serializable through lazy initialization.
*/
public class SerializedWrapper<T> implements Serializable {
private SerializedConstructor<T> constructor;
private transient T instance;
/**
* Creates a serializable wrapper for something.
*/
public SerializedWrapper(SerializedConstructor<T> constructor) {
this.constructor = constructor;
}
/**
* Gets or creates an instance of T.
*/
public T get() {
if (instance == null){
instance = constructor.get();
}
return instance;
}
}
/**
* Dummy interface so we don't have to do (Consumer<T> & Serializable)
*/
public interface SerializedConstructor<T> implements Serializable, Consumer<T> {}
关于java - 如何在 UDAF 中使用第三方不可序列化对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51543789/
我是一名优秀的程序员,十分优秀!