Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

Estou fazendo o curso: Curso Java e JPA Otimizações com JPA2 e Hibernate

Em todas as classe ocorre erro nessa linha: @GeneratedValue(strategy-GenerationType.IDENTITY)

O erro é esse: "Multiple markers at this line - strategy cannot be resolved to a variable - The attribute value is undefined for the annotation type GeneratedValue"

Preciso de ajuda. Obrigado

2 respostas
solução!

Bom dia Carlos, troque o - por =

@GeneratedValue(strategy-GenerationType.IDENTITY)

para:

@GeneratedValue(strategy=GenerationType.IDENTITY)

Obrigado Guilherme Romão. Estou iniciando no java. Agora funcionou.