<?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>. kam &#187; java</title>
	<atom:link href="http://www.dotkam.com/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dotkam.com</link>
	<description>one of those blogs</description>
	<lastBuildDate>Fri, 27 Jan 2012 20:32:48 +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>Money Making Project</title>
		<link>http://www.dotkam.com/2010/09/26/money-making-project/</link>
		<comments>http://www.dotkam.com/2010/09/26/money-making-project/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 00:04:04 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[hibernate]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://www.dotkam.com/?p=813</guid>
		<description><![CDATA[For the past several years most of my projects were based on Spring and Hibernate. And what I keep seeing is how people struggle to understand how the two are working together. So going from project to project, I have to repeat the same spiel over and over again to get people up to speed. [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2010/09/26/money-making-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Check If The Aspect Was Applied</title>
		<link>http://www.dotkam.com/2010/09/09/check-if-the-aspect-was-applied/</link>
		<comments>http://www.dotkam.com/2010/09/09/check-if-the-aspect-was-applied/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 21:09:49 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[aop]]></category>
		<category><![CDATA[aspectj]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.dotkam.com/?p=775</guid>
		<description><![CDATA[Let&#8217;s say you have an aspect defined that will be applied to a class: &#60;bean id=&#34;someComponent&#34; class=&#34;org.dotkam.SomeComponent&#34; /&#62; &#160; &#60;aop:config&#62; &#60;aop:aspect ref=&#34;someAspect&#34;&#62; &#60;aop:around method=&#34;someMethod&#34; pointcut=&#34;execution(public * org.dotkam.SomeComponent.*(..))&#34; /&#62; &#60;/aop:aspect&#62; &#60;/aop:config&#62; and you of course have &#8220;proxy-target-class&#8221; set to &#8220;true&#8221;: &#60;aop:aspectj-autoproxy proxy-target-class=&#34;true&#34;/&#62; Here is how to check if the aspect was applied: import static org.junit.Assert.assertTrue; import [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2010/09/09/check-if-the-aspect-was-applied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tomcat: Add Memory</title>
		<link>http://www.dotkam.com/2010/08/26/tomcat-add-memory/</link>
		<comments>http://www.dotkam.com/2010/08/26/tomcat-add-memory/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 06:02:07 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[hosting]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://www.dotkam.com/?p=763</guid>
		<description><![CDATA[sudo vi /usr/share/tomcat6/bin/catalina.sh At the beginning of the file, after initial comment block add: # setting JAVA_OPTS to perform JAVA_OPTS=&#34;-Xms512m -Xmx1024m -XX:MaxPermSize=384m -Xss128k&#34; Restart tomcat: sudo service tomcat6 restart]]></description>
		<wfw:commentRss>http://www.dotkam.com/2010/08/26/tomcat-add-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring Batch: Quick Start</title>
		<link>http://www.dotkam.com/2010/04/06/spring-batch-quick-start/</link>
		<comments>http://www.dotkam.com/2010/04/06/spring-batch-quick-start/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 06:34:52 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[spring-batch]]></category>

		<guid isPermaLink="false">http://www.dotkam.com/?p=620</guid>
		<description><![CDATA[You heard about Spring Batch, but have this &#8220;uneasy&#8221; feeling about where/how/what you should start with? A year ago it was truly difficult for a non geek developer (most of the developers) to start with projects like Spring Batch, Spring Integration, Spring Webflow, Spring MVC, etc.. But now.. Now, you have no excuse: it is [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2010/04/06/spring-batch-quick-start/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Think About Code Quality</title>
		<link>http://www.dotkam.com/2010/03/07/think-about-code-quality/</link>
		<comments>http://www.dotkam.com/2010/03/07/think-about-code-quality/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 03:46:47 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[code quality]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.dotkam.com/?p=615</guid>
		<description><![CDATA[Recently one of my friends from work asked me to help him improve the process around code quality and developer productivity. So I compiled my thoughts and e-mailed to him, but then I realized that it may be very helpful for others who are involved in software industry. Are you? Then keep reading.. Although tools [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2010/03/07/think-about-code-quality/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apache Chain with Spring</title>
		<link>http://www.dotkam.com/2009/07/26/apache-chain-with-spring/</link>
		<comments>http://www.dotkam.com/2009/07/26/apache-chain-with-spring/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 08:59:22 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://blog.dotkam.com/2009/07/26/apache-chain-with-spring/</guid>
		<description><![CDATA[&#8220;A popular technique for organizing the execution of complex processing flows is the &#8220;Chain of Responsibility&#8221; pattern, as described (among many other places) in the classic &#8220;Gang of Four&#8221; design patterns book. Although the fundamental API contracts required to implement this design patten are extremely simple, it is useful to have a base API that [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2009/07/26/apache-chain-with-spring/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>What is The Best Java Web Framework?</title>
		<link>http://www.dotkam.com/2009/06/24/what-is-the-best-java-web-framework/</link>
		<comments>http://www.dotkam.com/2009/06/24/what-is-the-best-java-web-framework/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 05:55:55 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://blog.dotkam.com/2009/06/24/what-is-the-best-java-web-framework/</guid>
		<description><![CDATA[No, really, what is it? Are you one of those people who ever wondered why there is actually more than one? Or you work with Struts for 5 years in a row, and think it is the best, just because you know all the nasty hooks you have to implement to make it do what [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2009/06/24/what-is-the-best-java-web-framework/feed/</wfw:commentRss>
		<slash:comments>61</slash:comments>
		</item>
		<item>
		<title>ZX-Spectrum Child</title>
		<link>http://www.dotkam.com/2008/11/19/zx-spectrum-child/</link>
		<comments>http://www.dotkam.com/2008/11/19/zx-spectrum-child/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 09:49:29 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[interesting]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[zx-spectrum]]></category>

		<guid isPermaLink="false">http://blog.dotkam.com/2008/11/19/zx-spectrum-child/</guid>
		<description><![CDATA[My first computer book was &#8220;Basic for Children with Arturo&#8221;. It was 1989, the book was in Russian, and I was 10&#8230; Back then, in USSR, to own a 8086 compatible PC was somewhat mystical, and therefore people, who knew a thing or two about microelectronics, were putting together Speccy(s) (ZX Spectrums), which were based [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2008/11/19/zx-spectrum-child/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Use HSQLDB Functions with Hibernate Mapping Files</title>
		<link>http://www.dotkam.com/2008/10/22/use-hsqldb-functions-with-hibernate-mapping-files/</link>
		<comments>http://www.dotkam.com/2008/10/22/use-hsqldb-functions-with-hibernate-mapping-files/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 20:57:11 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[hibernate]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[hsqldb]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://blog.dotkam.com/2008/10/22/use-hsqldb-functions-with-hibernate-mapping-files/</guid>
		<description><![CDATA[Let&#8217;s say you need to do a &#8220;local integration&#8221; test, where you code does not depend on external systems (queues/external servers/DB/etc..). Creating unit tests, mocking/stubbing everything out is all good, but sometimes you need to be able to run tests that are as close as possible to the &#8220;real world&#8221; deal, while you are in [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2008/10/22/use-hsqldb-functions-with-hibernate-mapping-files/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Reset Lost Password in Sun Application Server</title>
		<link>http://www.dotkam.com/2008/09/15/reset-lost-password-in-sun-application-server/</link>
		<comments>http://www.dotkam.com/2008/09/15/reset-lost-password-in-sun-application-server/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 19:52:21 +0000</pubDate>
		<dc:creator>Toly</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.dotkam.com/2008/09/15/reset-lost-password-in-sun-application-server/</guid>
		<description><![CDATA[Happens to the best of us, less with system admins more with developers. But we are all human, and believe it or not we DO forget and loose passwords at least once every so often. Some time ago I wrote a tutorial on how to reset lost root password in mysql, and here is another [...]]]></description>
		<wfw:commentRss>http://www.dotkam.com/2008/09/15/reset-lost-password-in-sun-application-server/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

