Try to annotate your id with @Id and @GeneratedValue(strategy = GenerationType.IDENTITY).
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
UPDATE: It will only work if your id column was declared as SERIAL or BIGSERIAL types.