How do I set a default value in Hibernate field?
To use default value from any column of table. then you must need to define @DynamicInsert
as true or else you just define @DynamicInsert
. Because hibernate takes by default as a true.
Consider as the given example:
@AllArgsConstructor
@Table(name = "core_contact")
@DynamicInsert
public class Contact implements Serializable {
@Column(name = "status", columnDefinition = "int default 100")
private Long status;
}