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.Dismiss alert
We used @DynamoDBMarshalling as a field annotation in our model class to marshal a java enum.
Saving and loading works, but when we use this field within a criteria we get an exception in AbstractDynamoDBQueryCriteria stating Cannot create condition for type:class xxx.domain.Status property conditions must be String,Number or Boolean, or have a DynamoDBMarshaller configured.
In class DynamoDBEntityMetadataSupport method public DynamoDBMarshaller<?> getMarshallerForProperty(final String propertyName) the logic only checks for an annotation on the getter, so the @DynamoDBMarshalling field annotation is ignored.