Search Results

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: …
4
votes

Is there a more efficient way of making pagination in Hibernate than executing select and count queries?

Baron Schwartz at MySQLPerformanceBlog.com authored a post about this. I wish …