Hibernate-アノテーションブール列のデフォルト値



Hibernate Annotation Boolean Column Default Value



への参照 エンティティブールフィールドのデフォルト値

@Column(nullable=false, columnDefinition='boolean default false') public Boolean getBoleanValue() { return test }

または



@PrePersist public void prePersist() { if ( getBoleanValue() == null ) { setBooleanValue( false ) } }

複製:https://www.cnblogs.com/makemelike/articles/3327803.html