Skip to content

Instantly share code, notes, and snippets.

@tkfx
Created June 23, 2016 09:28
Show Gist options
  • Select an option

  • Save tkfx/e6a481e17b1defc311fedc5e8dc336d5 to your computer and use it in GitHub Desktop.

Select an option

Save tkfx/e6a481e17b1defc311fedc5e8dc336d5 to your computer and use it in GitHub Desktop.
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "authorSequence")
@SequenceGenerator(name = "authorSequence", sequenceName = "author_seq", initialValue = 1000)
@Column(name = "id", updatable = false, nullable = false)
private Long id;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment