I am using spring-boot-starter-data-jpa
in my Spring boot project to handle DB stuff.
I want to create a sequence in Oracle programmatically. I have seen many solution which create sequence using raw query but i want to create a sequence from the code. Is there anything i can do using JPA.
I also want to get this sequence number and return it to the caller.
Thanks in advance!!!