Search Results

1
vote

When to use final

The development-time benefits of "final" are at least as significant as the run-time benefits. It tells future editors of the code something about your intentions. Marking a class "final" …
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 …
2
votes

Which SSO Framework to use?

I don't know what your business requirements are (e.g. security), but you might consider OpenId. It allows multiple identity providers (with thei …
0
votes

How do you version your projects and manage releases?

You didn't mention if any of the projects access a database, but if any do, that might be another factor to consider. We use a major.minor.bugfix.buildnumber scheme similar to others described in …
1
vote

What is the best way to deal with environment specific configuration in java?

Assign reasonable default values for all properties in the properties files distributed within your .war file. Assign environment-specific values for the appropriate properties in we …