<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DeepakGaikwad.net &#187; Java</title>
	<atom:link href="http://www.deepakgaikwad.net/index.php/tag/java/feed" rel="self" type="application/rss+xml" />
	<link>http://www.deepakgaikwad.net</link>
	<description>Travel Articles and Tech Notes</description>
	<lastBuildDate>Thu, 19 Jan 2012 09:18:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Common Mistakes in Exception Handling</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/03/04/common-mistakes-in-exception-handling.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/03/04/common-mistakes-in-exception-handling.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 05:46:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Dos and Don'ts]]></category>
		<category><![CDATA[Exception]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1174</guid>
		<description><![CDATA[Exception is disruption to a normal execution flow of a Java (in general any) program. This disruption can be because of a runtime problem e.g. data problem, initialization problem, etc. or because of a failing business condition. Java is capable of handling all such undesired scenarios elegantly. But when it comes to a developer to use these java generated exceptions to provide enough information to different stakeholders, then few mistakes occur.]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/03/04/common-mistakes-in-exception-handling.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Role of Frameworks in Architecture Definition</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/02/22/role-of-frameworks-in-architecture-definition.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/02/22/role-of-frameworks-in-architecture-definition.html#comments</comments>
		<pubDate>Mon, 22 Feb 2010 17:33:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Framework]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1166</guid>
		<description><![CDATA[If one wants to select an important technology trend in Java world over past few years, then it has to be the growth and wide acceptance of open source frameworks in application development. If we look back, there are examples of frameworks which got wiped out with time, also there are examples of frameworks which have changed the way applications are getting developed. These successful frameworks have contributed to give a new look to Java itself. There are many reasons behind continued success of different frameworks available in market. I ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/02/22/role-of-frameworks-in-architecture-definition.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eclipse Features to Improve Java Productivity</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/02/15/eclipse-features-to-improve-java-productivity.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/02/15/eclipse-features-to-improve-java-productivity.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 17:17:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1158</guid>
		<description><![CDATA[Eclipse IDE provides many features to help a developer in development activities. Help to write code, integrate with servers, deployment, quality check and what not. In this article, I am consolidating those features which help us in improving productivity. Here I have used Eclipse Galileo and for unit test generation it is JUnit 4.4.

1. Getter and Setter Generation
Open a java file in java editor, right click at the place where you want getters and setters implemented. The follow the menu Source &#62; Generate Getters and Setters… This will generate getters ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/02/15/eclipse-features-to-improve-java-productivity.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Long Time-stamp to Date Conversion in Java</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/02/10/long-time-stamp-to-date-conversion-in-java.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/02/10/long-time-stamp-to-date-conversion-in-java.html#comments</comments>
		<pubDate>Wed, 10 Feb 2010 10:56:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[timestamp]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1152</guid>
		<description><![CDATA[I wanted to convert a timestamp from long value to something human understandable date. I explored multiple ways of doing it with a couple of controlling parameters. Sharing it as it might be useful to you.

To present the output, there are two alternatives, one is going for manual business and other is using date formatter. Though first one is manual work, it is discussed here because you may require a format that is not readily available in standard formats provided by Java. Sometimes the time output is expected in a ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/02/10/long-time-stamp-to-date-conversion-in-java.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Investigating java.lang.OutOfMemoryError</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/02/09/investigating-java-lang-outofmemoryerror.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/02/09/investigating-java-lang-outofmemoryerror.html#comments</comments>
		<pubDate>Tue, 09 Feb 2010 16:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[java.lang.OutOfMemoryError]]></category>
		<category><![CDATA[JVM]]></category>
		<category><![CDATA[Memory]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1147</guid>
		<description><![CDATA[Mostly we do not encounter this error in preliminary stages of application development. Sometimes functional testing reveals this error, but many times it is revealed during performance testing. It is not so annoying when it occurs before we push the application into production, but the real pain starts when we are hit by this error in production. When production server goes down or hangs itself with java.lang.OutOfMemoryError, it can even lead to a heavy monitory loss. You get some breathing space if the server gives enough time between two cycles ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/02/09/investigating-java-lang-outofmemoryerror.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>When to Say NO to the Cup of Coffee?</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/01/20/when-to-say-no-to-a-cup-of-coffee.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/01/20/when-to-say-no-to-a-cup-of-coffee.html#comments</comments>
		<pubDate>Wed, 20 Jan 2010 15:54:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Disadvantages of Java]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1139</guid>
		<description><![CDATA[Java, a portable, multitasking, object oriented language. It has captured a considerable share of market so far. We also have huge number of products developed using this language to provide need based features to applications using it. It has also come long way since it’s birth. We have been using this language in many applications; still there are some places where we would prefer to say No to Java. These occasions may be result of some inherent disadvantages in Java, or these can be the side effects of some of ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/01/20/when-to-say-no-to-a-cup-of-coffee.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Code Generation in Application Development</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/01/19/code-generation-in-application-development.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/01/19/code-generation-in-application-development.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 16:37:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Code Generation]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1133</guid>
		<description><![CDATA[Till date there would have been hundreds of thousands of lines of code written in each programming language. Every new application getting developed adds thousands of lines of code to this code pool. But this code is not for free, it involves huge amount of money. There are many techniques to reduce the application development cost and to improve productivity. Still we have to handwrite all the code. UML design tools, IDEs like RAD and Eclipse etc. do help in automating this code writing process. Still there is a lot ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/01/19/code-generation-in-application-development.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What We Mostly Use in Java</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/01/12/what-we-mostly-use-in-java.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/01/12/what-we-mostly-use-in-java.html#comments</comments>
		<pubDate>Tue, 12 Jan 2010 07:32:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1130</guid>
		<description><![CDATA[Ok, I haven’t written any tool to scan entire worlds Java code to find out these syntax elements. But definitely, all of us have gone through thousands of lines of good and bad code since we learned this language – Java. Not only me but all those who call themselves as Java developer have traveled along with this language in its journey, which started long back with a tag of platform independent object oriented language to the recent versions where everything is getting annotated. It is not just a tag ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/01/12/what-we-mostly-use-in-java.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is JSF Dying?</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/01/09/is-jsf-dying.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/01/09/is-jsf-dying.html#comments</comments>
		<pubDate>Sat, 09 Jan 2010 15:07:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JSF]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1110</guid>
		<description><![CDATA[We remember the hype that rocked java world with entry of this web tier framework. It is different as compared to those frameworks which (actually) are front runners of web application technology stack. These include Struts, Spring MVC, Tapestry and many more. These frameworks provided simple MVC based web tier, and a set of classes abstracting the non functional part. This definitely made us to leave behind the MVC implementation of Jsp – Servlet – POJO/EJB, and use these frameworks instead. These technologies varied more in richness than fundamentals. Arrival ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/01/09/is-jsf-dying.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Collection Types</title>
		<link>http://www.deepakgaikwad.net/index.php/2010/01/07/google-collection-types.html</link>
		<comments>http://www.deepakgaikwad.net/index.php/2010/01/07/google-collection-types.html#comments</comments>
		<pubDate>Thu, 07 Jan 2010 16:55:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Google Collection Types]]></category>
		<category><![CDATA[Google Collections]]></category>

		<guid isPermaLink="false">http://www.deepakgaikwad.net/?p=1100</guid>
		<description><![CDATA[Google Collections provide additional collection types to offer additional but common features. These advanced types are derived from Java Collection types, hence they continue to offer the features of underlying Java type. In addition to that there are many additional features encapsulated in these new types, so that we can directly use them instead of re-inventing wheel. Let us see these interfaces and features of those interfaces.
Multimap: This interface is based on Map interface. Map stores key-value pairs. Map interface does not allow duplicates. Multimap also stores key-value pairs, just ...]]></description>
		<wfw:commentRss>http://www.deepakgaikwad.net/index.php/2010/01/07/google-collection-types.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

