User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T04:14:40Zhttp://stackoverflow.com/feeds/user/38748http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/315617#3156171Answer by pixelmonkey for When are API methods marked "deprecated" actually going to go away?pixelmonkey2008-11-24T21:47:50Z2008-11-24T21:47:50Z<p>I have a better recommendation: rather than telling him to use <code>Calendar</code>, you should switch to either <a href="http://joda-time.sourceforge.net/" rel="nofollow">JodaTime</a> or <a href="https://jsr-310.dev.java.net/nonav/doc-2008-08-04/index.html" rel="nofollow">JSR-310</a>'s pre-release version. Some methods on <code>java.util.Date</code> may be deprecated, but in my opinion the whole class should be deprecated, along with <code>Calendar</code>. The developers of JSR-310 seem to agree, although I doubt they'll ever bite the bullet and deprecate it.</p>
<p>In no particular order, here's what's wrong with <code>Date</code>:</p>
<ul>
<li><p>Its internal representation is milliseconds since the epoch; therefore, cannot represent dates before the epoch.</p></li>
<li><p>All of its useful methods (e.g. <code>toString</code>) first normalize the date according to the local timezone. When working with UTC <code>Date</code> instances, this can get <em>really</em> annoying; you're forced to use <code>Calendar</code> or you will make very bad errors.</p></li>
<li><p><code>Calendar</code>. It just stinks. Might win the award for worst API ever.</p></li>
<li><p>Always represents an <em>instant-in-time</em>. No way to represent specific days, or specific years. No way to represent timezone-less dates values.</p></li>
<li><p>Has almost no useful methods. See e.g. JodaTime's fluent interface for doing date arithmetic.</p></li>
<li><p>Should have been named <code>Datetime</code>, considering that it is one.</p></li>
</ul>
http://stackoverflow.com/questions/70216/whats-the-purpose-of-meta-inf/315588#3155880Answer by pixelmonkey for What's the purpose of META-INF?pixelmonkey2008-11-24T21:38:40Z2008-11-24T21:38:40Z<p>I've noticed that some Java libraries have started using META-INF as a directory in which to include configuration files that should be packaged and included in the CLASSPATH along with JARs. For example, Spring allows you to import XML Files that are on the classpath using:</p>
<pre><code><import resource="classpath:/META-INF/cxf/cxf.xml" />
<import resource="classpath:/META-INF/cxf/cxf-extensions-*.xml" />
</code></pre>
<p>In this example, I'm quoting straight out of the <a href="http://docs.huihoo.com/apache/cxf/2.0/configuration.html" rel="nofollow">Apache CXF User Guide</a>. On a project I worked on in which we had to allow multiple levels of configuration via Spring, we followed this convention and put our configuration files in META-INF.</p>
<p>When I reflect on this decision, I don't know what exactly would be wrong with simply including the configuration files in a specific Java package, rather than in META-INF. But it seems to be an emerging de facto standard; either that, or an emerging anti-pattern :-)</p>