I have a boolean property in my entity. Here\'s my annotations for it:
@Column(name = \"IS_ACTIVE\", nullable = false, columnDefinition=\"BIT DEFAULT 1\", length
Try using BOOLEAN data type, define your @Column annotation like that:
BOOLEAN
@Column
@Column(name = "IS_ACTIVE", columnDefinition = "boolean default true", nullable = false) private Boolean active = true;