You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
If I try to include a Collection object in my POJO (but intialize it as a concerete type such as ArrayList), JaVers complains with the following error:
JaversException: MANAGED_CLASS_MAPPING_ERROR given javaClass 'class java.util.ArrayList is mapped to java.util.ArrayList, expected ManagedType
For example, declared like this: private Collection<String> names;
The actual problem, according to StackOverflow, is that JaVers does not support fields declared as the abstract Collection type. The error message should be more clear about this.
The text was updated successfully, but these errors were encountered:
If I try to include a
Collection
object in my POJO (but intialize it as a concerete type such asArrayList
), JaVers complains with the following error:For example, declared like this:
private Collection<String> names;
The actual problem, according to StackOverflow, is that JaVers does not support fields declared as the abstract
Collection
type. The error message should be more clear about this.The text was updated successfully, but these errors were encountered: