Manage sequences using HQL

301 Views Asked by At

TLDR: There is a way to manage sequences in relational database using pure Hibernate or Spring?

I am writing a library in java That need to create and get the next value of a sequence. I can't use native sql because the database can be Oracle , H2 or Postgresql. In my opinion hql will be the best answer because it's not depend on the database type.

Thanks For any kind of help!!

2

There are 2 best solutions below

1
On BEST ANSWER

I'm pretty confident nothing like this exists in JPA nor in Spring (or Spring Data). There might be something useful internally in Hibernate and other JPA implementations but it is most certainly not intended for direct use.

If you want something ready-made jOOQ has support for this.

1
On
There are many different id generation options in hibernate. You can choose one of these strategies:
The Auto Strategy
The Identity Strategy
The Sequence Strategy
The Table Strategy

http://www.objectdb.com/java/jpa/entity/generated