for some reason I have not being able to find a suitable answer for this. I have the following simple entity:
@Entity @Table(name = \"simple_entity\") @Acce
I tackled the same question recently, and if someone stumbles up here, the solution for me was to annotate the column with
@Column(name = "id", columnDefinition = "BINARY(16)") private UUID id;
which solved the problem for me.