auto « Oracle « JPA Q&A





1. JPA primary key auto generate    stackoverflow.com

my primary key entity look like below

@GeneratedValue(strategy= GenerationType.TABLE)
private Long id;
when i run, i get error could not get or update next value;nested exception is org.hibernate.exception.SQLGrammerException:could not get or update next value but ...

2. Oracle Auto Increment    forum.hibernate.org