Skip to content

Instantly share code, notes, and snippets.

@schophil
Last active February 24, 2022 08:31
Show Gist options
  • Save schophil/b181609ade56a8853eaa23b866388020 to your computer and use it in GitHub Desktop.
Save schophil/b181609ade56a8853eaa23b866388020 to your computer and use it in GitHub Desktop.
JPA entity columns
@Entity(name = "table")
@Table(name = "table")
public class SomeEntity {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private UUID id;
// for postgres "TEXT" type
@Lob
private String document;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment