|
class TypedValue is not really Serializable,because of this field:
private final ValueHolder<Integer> hashcode;
ValueHolder is not Serializable.
if cache with a QueryKey,and the QueryKey has some namedParameters,and there are some TypedValues in namedParameters,the NotSerializableException will throw.
|