2
respostas

Erro Hibernate ao tentar persistir: Field ‘id’ doesn’t a default value

Para resolver esse problema, tive que fazer o seguinte

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Basic(optional = false)
@Column(name = "id", unique = true, nullable = false)
private Long id;
2 respostas

Obrigado, ajudou no meu erro.

apenas para ajudar quem estiver com essa dificuldade, o erro : org.hibernate.id.IdentifierGenerationException: ids for this class must be manually assigned before calling save()

também se resolve fazendo esse mesmo processo que o rogério explicou acima.

alias, valeu rogério, me ajudou aqui.