Hi,
I’m using a Embeddable Object to store i18n in a JSONB-Column like this:
@Table(schema = "mdata", name = "PART")
@Audited(withModifiedFlag = true)
public class Part {
@JdbcTypeCode(SqlTypes.JSON)
Translation description;
...
with
@Embeddable
public class Translation {
String de;
String en;
}
All changes to the Part entity trigger an entry in the envers-table PART_AUD, but
- changes to the JSONB description-column are not marked as modified and the
- jsonb-values in the PART_AUD are always NULL.
I found the ticket HHH-16910 but the author describes a thrown error.
In my Quarkus 3.2.0 project it just silently fails…
any ideas?
I created ticket HHH-16932