2
votes
Spring + Hibernate: how to have a configurable PK generator?
You could use sequences on both production systems, but define them differently:
Production System 1:
CREATE SEQUENCE sequence_name START WITH 1 INCREMENT BY 2;
Production System 2: …
