-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed as not planned
Labels
feature-requestA feature should be added or improved.A feature should be added or improved.
Description
I'm using dynamodb and the java class I'm storing has the following structure:
@DynamoDBTable(tableName="Animals")
class abstract Animal {
@DynamoDBHashKey(attributeName = "Id")
@DynamoDBAutoGeneratedKey
String id;
}
class Dog extends Animal {
// ... dog props
}
class Cat extends Animal {
// ... cat props
}
I would like to save instances of Animal
class to the db and retrieve them as well. Ready to supply meta information similar to @JsonTypeInfo
and the likes.
Looks like this is not supported right now.
http://stackoverflow.com/questions/39221525/dynamodbmapper-support-for-inheritance
manikandanrs, cheruvian, dsharkey, david-ratcliffe, moaxcp and 27 more
Metadata
Metadata
Assignees
Labels
feature-requestA feature should be added or improved.A feature should be added or improved.