PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Errore Postgres nell'inserimento batch:la relazione hibernate_sequence non esiste posizione 17

Prova ad annotare il tuo id con @Id e @GeneratedValue(strategy = GenerationType.IDENTITY) .

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

AGGIORNAMENTO: Funzionerà solo se la tua colonna ID è stata dichiarata come SERIAL o BIGSERIAL tipi.