0
Good evening I have a system project in Javaee with JSF2 Primefaces.
I’m using the @CPF and @CNPJ mappings from Hibernate, in the same attribute.
But this giving error "WARN: HV000129: EL Expression '${value}' References an Unknown Property"
This is part of the model code@CNPJ(groups =JuridicaGroup.class)
@CPF(groups = FisicaGroup.class)
@Size(max = 20)
@Column(name = "doc_receita_federal", nullable = false, length = 20)
public String getDocumentoReceitaFederal() {
return documentoReceitaFederal;
}
I would like to please receive help, I searched on the internet but nothing, only vague answers.