标签: jhipster
当我使用字段LocalDate生成表时,它将是必需的。
@Column(name = "supported_date", nullable = false) private LocalDate supportedDate;
我不明白这条规则。
答案 0 :(得分:0)
它位于@Column注释:nullable = false means that the column is not nullable,,这意味着它不能包含空值,这意味着该列是必需的。
@Column
nullable = false