注释@Id和@GeneratedValue(策略= GenerationType.IDENTITY)有什么用?为什么代型是身份?
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
我们为什么要使用这个注释?我需要知道这个自动增加我的表ID值。(GenerationType.IDENTITY)当我们使用此注释时,是否有任何其他类型的实际情况
public class Author extends Domain
{
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Basic(optional = false)
@Column(name = "id")
private Integer id;
@Basic(optional = false)
@Column(name = "name")
private String name;
@Column(name = "address")
private String address;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "authorId")
private List<Book>
bookList;
public Author()
{
setServiceClassName("wawo.tutorial.service.admin.AuthorService");
}
}
*是否需要扩展域抽象类?有什么用?