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
I've found that adding in the constructor is a good workaround to default new entities to a value:
public EntityName(){ this.fieldToDefault = default; }