How to set default boolean value in JPA

前端 未结 9 1535
遥遥无期
遥遥无期 2021-02-01 13:53

I have an attribute

private boolean include;

I would like to set its default value to true, so that in the database it must display True from d

9条回答
  •  南笙
    南笙 (楼主)
    2021-02-01 14:21

    You can always use annotations @PreUpdate or @PrePersist on method where you will setup what should be done before update or before save into DB.

    Or just simply setup the value private boolean include = true;

提交回复
热议问题