- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
2天前关闭。
Improve this question
@DynamoDBTable(tableName = "student_table")
public class Stduent {
@DynamoDBAutoGeneratedKey
@DynamoDBHashKey
private int id;
我不明白下面的代码有什么用?
@DynamoDBAutoGeneratedKey
@DynamoDBHashKey
private int id;
1条答案
按热度按时间xxls0lw81#
∮ ∮ ∮ ∮
用于在类中标记散列键或范围键属性以自动生成此键的注解。只有String类型的键可以自动生成,并被赋予随机UUID。该注解可以应用于getter方法或自动生成的键属性的类字段。如果该注解直接应用于类字段,对应的getter和setter必须在同一个类中声明。2这个注解可以应用于主键和索引键。