Skip to content

Instantly share code, notes, and snippets.

@davidpaniz
Created December 22, 2014 21:00
Show Gist options
  • Save davidpaniz/26ee897e4dc67d95e41f to your computer and use it in GitHub Desktop.
Save davidpaniz/26ee897e4dc67d95e41f to your computer and use it in GitHub Desktop.
@Entity
@SequenceGenerator(name = "Entidade_Seq")
public class Entidade {
@Id
@GeneratedValue(generator = "Entidade_Seq", strategy = GenerationType.AUTO)
private int id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment