User Eric Rath - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T06:56:06Zhttp://stackoverflow.com/feeds/user/23883http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/199869/what-is-the-best-way-to-deal-with-environment-specific-configuration-in-java/199901#1999011Answer by Eric Rath for What is the best way to deal with environment specific configuration in java?Eric Rath2008-10-14T03:14:56Z2008-10-14T03:14:56Z<ol>
<li>Assign reasonable default values for all properties in the properties files distributed within your .war file.</li>
<li>Assign environment-specific values for the appropriate properties in webapp context (e.g. conf/server.xml or conf/Catalina/localhost/yourapp.xml)</li>
<li>Have your application check the context first (for the environment-specific values), and fall back on the default values in the app's properties values if no override is found. </li>
</ol>
http://stackoverflow.com/questions/198462/get-versus-post-in-terms-of-security/198492#1984921Answer by Eric Rath for GET versus POST in terms of security?Eric Rath2008-10-13T18:19:05Z2008-10-13T18:19:05Z<p>Many people adopt a convention (alluded to by Ross) that GET requests only retrieve data, and do not modify any data on the server, and POST requests are used for all data modification. While one is not more inherently secure than the other, if you <em>do</em> follow this convention, you can apply cross-cutting security logic (e.g. only people with accounts can modify data, so unauthenticated POSTs are rejected). </p>
http://stackoverflow.com/questions/191387/how-do-you-version-your-projects-and-manage-releases/192407#1924070Answer by Eric Rath for How do you version your projects and manage releases?Eric Rath2008-10-10T17:39:01Z2008-10-10T17:39:01Z<p>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 answers to this question, with approximately the same logic, but with the added requirement that any database schema changes require at least a minor increment. This also provides a naming scheme for your database schemas. For example, versions 1.2.3 and 1.2.4 can both run against the "1.2" database schema, but version 1.3.0 requires the "1.3" database schema.</p>
http://stackoverflow.com/questions/173704/which-sso-framework-to-use/189603#1896032Answer by Eric Rath for Which SSO Framework to use?Eric Rath2008-10-09T23:37:55Z2008-10-09T23:44:17Z<p>I don't know what your business requirements are (e.g. security), but you might consider <a href="http://www.openid.net" rel="nofollow">OpenId</a>. It allows multiple identity providers (with their own level of security), and multiple relying parties. There are several open-source Java client libraries (as well as libraries in other languages), and even a few open-source server projects. Anyone with an AOL, Yahoo, or Google account already has an OpenID identity. Or you can create your own with providers like <a href="http://www.myopenid.com" rel="nofollow">MyOpenId</a>.</p>
<p>WHOOPS - I forgot that we're all using OpenID to authenticate with StackOverflow, so you're probably already at least aware of it!</p>
http://stackoverflow.com/questions/168084/is-there-a-more-efficient-way-of-making-pagination-in-hibernate-than-executing-se/183902#1839024Answer by Eric Rath for Is there a more efficient way of making pagination in Hibernate than executing select and count queries?Eric Rath2008-10-08T17:30:18Z2008-10-08T17:30:18Z<p>Baron Schwartz at MySQLPerformanceBlog.com authored a <a href="http://www.mysqlperformanceblog.com/2008/09/24/four-ways-to-optimize-paginated-displays/" rel="nofollow">post</a> about this. I wish there was a magic bullet for this problem, but there isn't. Summary of the options he presented:</p>
<ol>
<li>On the first query, fetch and cache all the results.</li>
<li>Don't show all results.</li>
<li>Don't show the total count or the intermediate links to other pages. Show only the "next" link.</li>
<li>Estimate how many results there are.</li>
</ol>
http://stackoverflow.com/questions/182721/spring-hibernate-how-to-have-a-configurable-pk-generator/183682#1836822Answer by Eric Rath for Spring + Hibernate: how to have a configurable PK generator?Eric Rath2008-10-08T16:33:28Z2008-10-08T16:33:28Z<p>You could use sequences on both production systems, but define them differently:</p>
<p>Production System 1:
CREATE SEQUENCE sequence_name START WITH 1 INCREMENT BY 2;</p>
<p>Production System 2:
CREATE SEQUENCE sequence_name START WITH 2 INCREMENT BY 2;</p>
<p>The first sequence will generate only odd numbers, the second only even numbers.</p>
http://stackoverflow.com/questions/183532/what-is-the-difference-between-html-tags-div-and-span/183561#1835610Answer by Eric Rath for What is the difference between HTML tags DIV and SPAN?Eric Rath2008-10-08T16:07:38Z2008-10-08T16:07:38Z<p>As mentioned in other answers, by default div will be rendered as a block element, while span will be rendered inline within its context. But neither has any semantic value; they exist to allow you to apply styling and an identity to any given bit of content. Using styles, you can make a div act like a span and vice-versa.</p>
http://stackoverflow.com/questions/6519/learning-sql/180483#1804830Answer by Eric Rath for Learning SQLEric Rath2008-10-07T21:20:01Z2008-10-07T21:20:01Z<p>I agree with Joseph Pecoraro's post, but would add constraints as a necessary topic to understand (e.g. primary keys, foreign keys, unique constraints), and how they relate to indices and data integrity. I'd also stress the importance of good database design as well (which includes normalization) - know what data you need to store, know the relationships between the data, and know how it might grow over time. All the tricks in the world won't help you build a good application on top of a database schema that was poorly designed or inappropriate for the data it holds. I was in a very similar situation to you, and read "An Introduction to Database Systems" by C. J. Date. I can't say I've retained everything from the book, but it does provide an excellent foundation of knowledge about the relational model.</p>
http://stackoverflow.com/questions/165401/how-to-compare-validate-sql-schema/168284#1682841Answer by Eric Rath for how to compare/validate sql schemaEric Rath2008-10-03T18:40:57Z2008-10-03T18:40:57Z<p>You didn't mention which RDMBS you're using: if the INFORMATION SCHEMA views are available in your RDBMS, and if you can reference both schemas from the same host, you can query the INFORMATION SCHEMA views to identify differences in:
-tables
-columns
-column types
-constraints (e.g. primary keys, unique constraints, foreign keys, etc)</p>
<p>I've written a set of queries for exactly this purpose on SQL Server for a past job - it worked well to identify differences. Many of the queries were using LEFT JOINs with IS NULL to check for the absence of expected items, others were comparing things like column types or constraint names.</p>
<p>It's a little tedious, but its possible.</p>
http://stackoverflow.com/questions/167952/null-or-empty-string-to-represent-no-data-in-table-column/168012#1680124Answer by Eric Rath for Null or empty string to represent no data in table column?Eric Rath2008-10-03T17:35:10Z2008-10-03T17:42:20Z<p>In the context of the relational database model, null indicates "no value" or "unknown value". It exists for exactly the purpose you describe.</p>
<p>UPDATE: Sorry, I forgot to add that while most (all?) RDMBSs use this same definition for null, there are nuanced differences in how null is handled. For example, MySQL and Oracle allow multiple nulls in a UNIQUE column (or set of columns), because null is not a value, and cannot be considered unique (null != null). But the last time I used MS SQL Server, it only allowed a single null. So you might need to consider the RDBMS behavior, and whether the column in question will be constrained or indexed.</p>
http://stackoverflow.com/questions/154314/when-to-use-final/154481#1544811Answer by Eric Rath for When to use finalEric Rath2008-09-30T19:06:11Z2008-09-30T19:06:11Z<p>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.</p>
<p>Marking a class "final" indicates that you've not made an effort during design or implementation of the class to handle extension gracefully. If the readers can make changes to the class, and want to remove the "final" modifier, they can do so at their own risk. It's up to them to make sure the class will handle extension well.</p>
<p>Marking a variable "final" (and assigning it in the constructor) is useful with dependency injection. It indicates the "collaborator" nature of the variable.</p>
<p>Marking a method "final" is useful in abstract classes. It clearly delineates where the extension points are. </p>