<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Amit Patel&#039;s Blog</title>
	<atom:link href="http://amitpatelinfo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://amitpatelinfo.wordpress.com</link>
	<description>When the Technology Ends.</description>
	<lastBuildDate>Tue, 29 Nov 2011 12:38:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='amitpatelinfo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Amit Patel&#039;s Blog</title>
		<link>http://amitpatelinfo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://amitpatelinfo.wordpress.com/osd.xml" title="Amit Patel&#039;s Blog" />
	<atom:link rel='hub' href='http://amitpatelinfo.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Reading property file using ResourceBundle</title>
		<link>http://amitpatelinfo.wordpress.com/2011/11/29/reading-property-file-using-resourcebundle/</link>
		<comments>http://amitpatelinfo.wordpress.com/2011/11/29/reading-property-file-using-resourcebundle/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 11:51:05 +0000</pubDate>
		<dc:creator>amitpatelinfo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://amitpatelinfo.wordpress.com/?p=106</guid>
		<description><![CDATA[Now it&#8217;s very easy to read the .properties file using ResourceBundle utility. Step 1 : Create a properties file, i.e. key.properties name=Amit email=amitpatelinfo@gmail.com Step 2 : Create a Property reader class. i.e.  PropertyReader.java package com.ap.util; import java.util.ResourceBundle; /** * Read the properties file. * @author Amit Patel * */ public class PropertyReader { private static [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=106&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now it&#8217;s very easy to read the .properties file using ResourceBundle utility.</p>
<p>Step 1 : Create a properties file, i.e. key.properties</p>
<blockquote><p>name=Amit<br />
email=amitpatelinfo@gmail.com</p></blockquote>
<p>Step 2 : Create a Property reader class. i.e.  PropertyReader.java</p>
<blockquote><p>package com.ap.util;</p>
<p>import java.util.ResourceBundle;<br />
/**<br />
* Read the properties file.<br />
* @author Amit Patel<br />
*<br />
*/</p>
<p>public class PropertyReader {</p>
<p style="padding-left:30px;">private static final ResourceBundle keyBundle = ResourceBundle.getBundle(&#8220;key&#8221;);</p>
<p style="padding-left:30px;">public static String getValueFromKeyFile(String key){</p>
<p style="padding-left:60px;">try{</p>
<p style="padding-left:90px;">return keyBundle.getString(key);</p>
<p style="padding-left:60px;">}catch(Exception ex){</p>
<p style="padding-left:90px;">return null;</p>
<p style="padding-left:60px;">}</p>
<p style="padding-left:30px;">}</p>
<p>}</p></blockquote>
<p>Step 3 : Use the PropertyReader to read the property file.</p>
<blockquote><p>String email= PropertyReader.getValueFromKeyFile(&#8220;email&#8221;);</p></blockquote>
<p>That&#8217;s it. .. Wow you read the property file using few line of code.. Great..!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amitpatelinfo.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amitpatelinfo.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amitpatelinfo.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amitpatelinfo.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/amitpatelinfo.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/amitpatelinfo.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/amitpatelinfo.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/amitpatelinfo.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amitpatelinfo.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amitpatelinfo.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amitpatelinfo.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amitpatelinfo.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amitpatelinfo.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amitpatelinfo.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=106&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://amitpatelinfo.wordpress.com/2011/11/29/reading-property-file-using-resourcebundle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c05d7314087e7ba56e737889a41daa8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amitpatelinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>Increasing Tomcat’s memory</title>
		<link>http://amitpatelinfo.wordpress.com/2010/02/15/increasing-tomcat%e2%80%99s-memory/</link>
		<comments>http://amitpatelinfo.wordpress.com/2010/02/15/increasing-tomcat%e2%80%99s-memory/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 09:50:40 +0000</pubDate>
		<dc:creator>amitpatelinfo</dc:creator>
				<category><![CDATA[Grails]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Increasing Tomcat’s memory]]></category>
		<category><![CDATA[Out of Memory tomcat]]></category>
		<category><![CDATA[Perm Gen Space Tomcat]]></category>

		<guid isPermaLink="false">http://amitpatelinfo.wordpress.com/?p=53</guid>
		<description><![CDATA[Hi all, If memory is not a problem on your server then allocate a large amount of memory, such as 512M or more. Also use the server VM option. EG: (-server -Xms512M -Xmx512M). Usually it is better to set both min and max heap size to the same in server applications. Accordingly, if you’re using [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=53&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>If memory is not a problem on your server then allocate a large amount of memory, such as 512M or more. Also use the server VM option. EG: (-server -Xms512M -Xmx512M). Usually it is better to set both min and max heap size to the same in server applications.</p>
<p>Accordingly, if you’re using Tomcat (and you’d like to allocate a lot of memory), you can edit the catalina.(bin | sh) file found in the bin directory of your Tomcat installation. </p>
<p>For example, on a Windows machine (where I currently find myself these days), I added the following statement around line 71:</p>
<p>set JAVA_OPTS=%JAVA_OPTS% -server -Xms512M -Xmx512M -XX:MaxPermSize=256m.</p>
<p>Thanks,<br />
Amit</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amitpatelinfo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amitpatelinfo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amitpatelinfo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amitpatelinfo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/amitpatelinfo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/amitpatelinfo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/amitpatelinfo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/amitpatelinfo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amitpatelinfo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amitpatelinfo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amitpatelinfo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amitpatelinfo.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amitpatelinfo.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amitpatelinfo.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=53&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://amitpatelinfo.wordpress.com/2010/02/15/increasing-tomcat%e2%80%99s-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c05d7314087e7ba56e737889a41daa8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amitpatelinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>PermGen space in Grails</title>
		<link>http://amitpatelinfo.wordpress.com/2010/02/15/permgen-space-in-grails/</link>
		<comments>http://amitpatelinfo.wordpress.com/2010/02/15/permgen-space-in-grails/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 05:41:09 +0000</pubDate>
		<dc:creator>amitpatelinfo</dc:creator>
				<category><![CDATA[Grails]]></category>
		<category><![CDATA[Groovy]]></category>
		<category><![CDATA[permgen space]]></category>
		<category><![CDATA[PermGen space in Grails]]></category>

		<guid isPermaLink="false">http://amitpatelinfo.wordpress.com/?p=39</guid>
		<description><![CDATA[Hi , To resolve the permgen space in grails. 1) Open the Command prompt 2) fire the below command on cmd prompt. set JAVA_OPTS=-XX:MaxPermSize=128m -XX:PermSize=128m -Xms1024m -Xmx1024m -XX:-UseGCOverheadLimit 3) Go to the project directory and fire run-app.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=39&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi ,</p>
<p>To resolve the permgen space in grails.</p>
<p>1) Open the Command prompt</p>
<p>2) fire the below command on cmd prompt.</p>
<p>set JAVA_OPTS=-XX:MaxPermSize=128m -XX:PermSize=128m -Xms1024m -Xmx1024m -XX:-UseGCOverheadLimit</p>
<p>3) Go to the project directory and fire <strong>run-app.</strong></p>
<a href="http://polldaddy.com/poll/1854022/">View This Poll</a>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amitpatelinfo.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amitpatelinfo.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amitpatelinfo.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amitpatelinfo.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/amitpatelinfo.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/amitpatelinfo.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/amitpatelinfo.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/amitpatelinfo.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amitpatelinfo.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amitpatelinfo.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amitpatelinfo.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amitpatelinfo.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amitpatelinfo.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amitpatelinfo.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=39&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://amitpatelinfo.wordpress.com/2010/02/15/permgen-space-in-grails/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c05d7314087e7ba56e737889a41daa8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amitpatelinfo</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Started with Grails</title>
		<link>http://amitpatelinfo.wordpress.com/2010/02/15/getting-started-with-grails/</link>
		<comments>http://amitpatelinfo.wordpress.com/2010/02/15/getting-started-with-grails/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 05:04:29 +0000</pubDate>
		<dc:creator>amitpatelinfo</dc:creator>
				<category><![CDATA[Grails]]></category>
		<category><![CDATA[Getting Started Grails]]></category>
		<category><![CDATA[Getting Started with Grails]]></category>
		<category><![CDATA[groovy grails]]></category>

		<guid isPermaLink="false">http://amitpatelinfo.wordpress.com/?p=31</guid>
		<description><![CDATA[Groovy provides a highly-expressive and fully object-oriented language for building Grails applications. Groovy allows the developer to convey ideas concisely and naturally, in a manner that’s easy to read and understand. And, Java developers will appreciate its familiar syntax and its seamless Java integration, knowing that they can invoke any Java class from within Groovy, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=31&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Groovy provides a highly-expressive and fully object-oriented language for building Grails applications. Groovy allows the developer to convey ideas concisely and naturally, in a manner that’s easy to read and understand. And, Java developers will appreciate its familiar syntax and its seamless Java integration, knowing that they can invoke any Java class from within Groovy, and vice versa.</p>
<p><strong>Installing Grails</strong></p>
<p>1) Download Grails from following URL.</p>
<p>http://grails.org/Download</p>
<p>2) Grails Installation</p>
<ul>
<li> Extract the archive into an appropriate location; typically C:\grails on Windows.</li>
<li> Create a GRAILS_HOME environment variable that points to the path where you extracted the archive (eg C:\grails on Windows)</li>
<li> If you have not set the JAVA_HOME environment variable yet, create JAVA_HOME environment variable that points to the path where you have installed Java</li>
<li> Append a reference to the &#8220;bin&#8221; directory within the Grails directory to your PATH variable (eg %GRAILS_HOME%\bin on Windows).</li>
<li> Type &#8220;grails&#8221; at the command line, if a help message is displayed you are ready to start using Grails!</li>
</ul>
<p>3)  Grails Command-Line Help</p>
<p>&gt;grails</p>
<p>help:<br />
Usage: grails [target]<br />
Targets:</p>
<p>&#8220;create-app&#8221; &#8211; Create a new grails app<br />
&#8220;create-controller&#8221; &#8211; Create a new controller<br />
&#8220;create-service&#8221; &#8211; Create a new service<br />
&#8220;create-domain-class&#8221; &#8211; Create a new domain class<br />
&#8220;create-taglib&#8221; &#8211; Create a new tag library class<br />
&#8220;create-test-suite&#8221; &#8211; Create a new test suite<br />
&#8220;create-job&#8221; &#8211; Create a quartz scheduled job<br />
&#8220;generate-controller&#8221; &#8211; Generates a controller from a domain class<br />
&#8220;generate-views&#8221; &#8211; Generates the views from a domain class<br />
&#8220;generate-all&#8221; &#8211; Generates all artifacts from a domain class<br />
&#8220;test-app&#8221; &#8211; Run current app&#8217;s unit tests<br />
&#8220;run-app&#8221; &#8211; Run the application locally and wait<br />
&#8220;create-webtest&#8221; &#8211; Create the functional test layout<br />
&#8220;run-webtest&#8221; &#8211; Run the functional tests for a running app<br />
&#8220;shell&#8221; &#8211; Opens the Grails interactive command line shell<br />
&#8220;console&#8221; &#8211; Opens the Grails interactive swing console<br />
&#8220;war&#8221; &#8211; Create a deployable Web Application Archive (WAR</p>
<p>4) Create “Hello World!” Application<a href="http://polldaddy.com/poll/1854022/">View This Poll</a></p>
<p>So let’s get started creating our first Grails application. To complete your journey through<br />
creating a “Hello World!” application you’re going to step through the following tasks:</p>
<ul>
<li>Execute the grails create-app command to create a basic Grails application.</li>
<li>Create something called a controller that will handle a web request.</li>
<li>Use the controller to display some text.</li>
<li>Run the Grails application and view what you achieved in a web browser.</li>
</ul>
<p>5)  To create our “hello” application we need to run the create-app target. This will prompt<br />
you for the name of the application you wish to create. Enter the word hello and hit the return.</p>
<p>&gt;grails create-app<br />
init-props:<br />
create-app:<br />
[input] Enter application name:<br />
hello</p>
<p>Upon completion, the target will have created the “hello” Grails application and the<br />
necessary directory structure.</p>
<p><img src="http://amitpatelinfo.files.wordpress.com/2010/02/grails_directory.jpg?w=600" alt="Grails Directory Structure" /></p>
<p>6)  start the Grails application by running the following target</p>
<p>run-app</p>
<p>7)  Run application in the browser.</p>
<p>http://localhost:8080/hello</p>
<a href="http://polldaddy.com/poll/1854022/">View This Poll</a>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amitpatelinfo.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amitpatelinfo.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amitpatelinfo.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amitpatelinfo.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/amitpatelinfo.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/amitpatelinfo.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/amitpatelinfo.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/amitpatelinfo.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amitpatelinfo.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amitpatelinfo.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amitpatelinfo.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amitpatelinfo.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amitpatelinfo.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amitpatelinfo.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=31&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://amitpatelinfo.wordpress.com/2010/02/15/getting-started-with-grails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c05d7314087e7ba56e737889a41daa8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amitpatelinfo</media:title>
		</media:content>

		<media:content url="http://amitpatelinfo.files.wordpress.com/2010/02/grails_directory.jpg" medium="image">
			<media:title type="html">Grails Directory Structure</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello Friends!</title>
		<link>http://amitpatelinfo.wordpress.com/2009/08/08/hello-world/</link>
		<comments>http://amitpatelinfo.wordpress.com/2009/08/08/hello-world/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 07:57:27 +0000</pubDate>
		<dc:creator>amitpatelinfo</dc:creator>
				<category><![CDATA[Grails]]></category>
		<category><![CDATA[Groovy]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[Struts]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[One of the best blog in the world which give a straight forward solution in any technology of JAVA. Technology includes Core Java , J2EE , Spring , Hibernate , Wicket , JSF , Struts , Groovy , Grails and many more. I am sure you will get 100% solutions and knowledge of the Products. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=1&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><BR><br />
One of the best blog in the world which give a straight forward solution in any technology of JAVA. Technology includes Core Java , J2EE , Spring , Hibernate , Wicket , JSF , Struts , Groovy , Grails and many more.<br />
<BR><br />
I am sure you will get 100% solutions and knowledge of the Products.<br />
<BR><br />
You can also see some start up kit for all technology and also see some demo.<br />
<BR><br />
The main goal for the blog is to transfer my knowledge in the world.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/amitpatelinfo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/amitpatelinfo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/amitpatelinfo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/amitpatelinfo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/amitpatelinfo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/amitpatelinfo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/amitpatelinfo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/amitpatelinfo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/amitpatelinfo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/amitpatelinfo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/amitpatelinfo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/amitpatelinfo.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/amitpatelinfo.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/amitpatelinfo.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=amitpatelinfo.wordpress.com&amp;blog=8921039&amp;post=1&amp;subd=amitpatelinfo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://amitpatelinfo.wordpress.com/2009/08/08/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c05d7314087e7ba56e737889a41daa8b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">amitpatelinfo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
