Skip to content

Instantly share code, notes, and snippets.

@moomdate
Created September 11, 2022 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moomdate/ba3965263e82905397873c29334e8b90 to your computer and use it in GitHub Desktop.
Save moomdate/ba3965263e82905397873c29334e8b90 to your computer and use it in GitHub Desktop.
auto id
@Data
@Entity
@Table(name = "student")
public class Student {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String name;
private Integer age;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment