0
I have the composite key below, the problem is that when creating the schema
and save the values, Hibernate is reversing the values of TipoContrato
with Distribuidora
and vice versa. Someone has experienced a similar anomaly using the embeddedid
?
@Embeddable
public class IdentificadorUnidadeConsumidoraId implements Serializable {
private static final long serialVersionUID = -8961508936592415161L;
/*
* Além do idUnidade herdado, este identificador é informado pela
* Distribuidora, único, mas não pode ser alterado.
*/
@Index(name = "IDX_IDENTUNIDADECONSUMIDORA_CODUNIDADECONSUMIDORA", columnNames = "CODUNIDADECONSUMIDORA")
@Column(name = "CODUNIDADECONSUMIDORA", length = 20, nullable = false)
private String codUnidadeConsumidora;
@Enumerated(EnumType.ORDINAL)
@Column(name = "TIPOCONTRATO", length = 20)
private TipoContrato tipoContrato;
@ManyToOne
@JoinColumn(name = "IDDISTRIBUIDORA")
private Distribuidora distribuidora;
When you go in the database columns, the values are reversed in the columns
TIPOCONTRATO
andIDDISTRIBUIDORA
?– wryel
exactly,for example if I set up the Enum String Type, the IDDISTRIBUTOR receives the string value of the Enum Type. schema creation and insertion are switched.
– Bruno Serqueira