|
Would lover for users to be able to provide and use their identifier generator annotations (and of course have Hibernate understand what the heck they are talking about).
For example:
@Id
@IncrementGenerated
private Long id;
And have IncrementGenerated expose a way to tell Hibernate what it means in terms of generation.
This follows along the same idea as org.hibernate.tuple.GeneratedValueGeneration
|