Last active
February 24, 2022 08:31
-
-
Save schophil/b181609ade56a8853eaa23b866388020 to your computer and use it in GitHub Desktop.
JPA entity columns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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