I can see that all applications created by [jhipster], are using hibernate_sequence as the general sequence for all entities. Normally I create a sequence for each entity. So, in my [jhipster] application I have to modify the entity file to customize the sequence name instead of hibernate_sequence. Why you are using general hibernate_sequence? Is it best practice instead of using new sequence for each entity? or you have a target behind this?
In my case, I have a huge number of entities with a huge number of concurrent access. Is it ok to use one sequence for all those entities? Or should I create a sequence for each one?