Is there any possibility to do a kind of "refactor" of allocationSize in order to put it inside the perssitence.xml instead of having to configure it inside each Entity ?
here's what I don't want to have :
@SequenceGenerator(name="AGENT_IDAGENT_GENERATOR", sequenceName="AGENT_SEQ", allocationSize=1)
here's what I'm expecting to have
<properties>
<property name="allocationSize" value="1"/>
</properties>
</persistence-unit>
Thank's in advance