0

问题标题几乎说明了一切。我有一个这样声明的字段:

    @DatabaseField(canBeNull=false,dataType=DataType.SERIALIZABLE)
    List<ScheduleTriggerPredicate> predicates = Collections.emptyList();

根据上下文,predicates可以包含空列表或Collections.unmodifiableList(List)以 anArrayList作为其参数返回的不可变列表。因此,我知道有问题的对象是可序列化的,但我无法告诉编译器(以及 ORMLite)它是可序列化的。因此我得到了这个例外:

SEVERE: Servlet /ADHDWeb threw load() exception
java.lang.IllegalArgumentException: Field class java.util.List for field
    FieldType:name=predicates,class=ScheduleTrigger is not valid for type 
    com.j256.ormlite.field.types.SerializableType@967d5f, maybe should be
    interface java.io.Serializable

现在,如果只有某种方法可以禁用检查,那么一切显然都会正常工作......

4

1 回答 1

6

定义自定义数据类型在 FM 中有很好的记录:

http://ormlite.com/docs/custom-data-types

您可以扩展SerializableType类和@Override方法isValidForField(...)。在这种情况下,这将序列化集合。

public class SerializableCollectionsType extends SerializableType {
    private static LocalSerializableType singleton;
    public SerializableCollectionsType() {
        super(SqlType.SERIALIZABLE, new Class<?>[0]);
    }
    public static LocalSerializableType getSingleton() {
        if (singleton == null) {
            singleton = new LocalSerializableType();
        }
        return singleton;
    }
    @Override
    public boolean isValidForField(Field field) {
        return Collection.class.isAssignableFrom(field.getType());
    }
}

要使用它,您必须dataTypepersisterClassin替换@DatabaseField

@DatabaseField(canBeNull = false,
    persisterClass = SerializableCollectionsType.class)
List<ScheduleTriggerPredicate> predicates = Collections.emptyList();

我已添加到单元测试中以显示使用此代码的工作代码。这是github 更改

于 2013-03-28T19:34:19.503 回答