Amazon DynamoDB mapping enums
2022-09-01 10:10:30
我需要为 Amazon DynamoDB 映射一个用户类。User 对象上的属性之一是 AccountType(枚举)。我该如何处理?以下是我尝试过的枚举和代码。
public enum AccountType {
TYPE_A,
TYPE_B
}
-
@DynamoDBAttribute(attributeName="AccountType") *<< THIS FAILS*
public AccountType getAccountType() {
return accountType;
}
任何帮助将不胜感激。