Skip to content

Instantly share code, notes, and snippets.

@atesibrahim
Created July 19, 2022 14:12
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 atesibrahim/3014c881944ce5159b6d4a725af2ff27 to your computer and use it in GitHub Desktop.
Save atesibrahim/3014c881944ce5159b6d4a725af2ff27 to your computer and use it in GitHub Desktop.
Coucbase Example
@Builder
@Data
@AllArgsConstructor
@Document
public class Book {
@Id
private final String id;
@Field
private String title;
@Field
private Author author;
@Field
private String[] tags;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment