Skip to content

Instantly share code, notes, and snippets.

@baybatu
Created March 23, 2019 20:02
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 baybatu/31068c0571d3fc78e25d58ac055e761d to your computer and use it in GitHub Desktop.
Save baybatu/31068c0571d3fc78e25d58ac055e761d to your computer and use it in GitHub Desktop.
spring-data-couchbase ile otomatik document ID üretimi
@Document
public class OrnekDokuman {
@Id
@GeneratedValue(strategy = GenerationStrategy.UNIQUE) // UUID
String id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment