<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Java tips for coders, by coders</title>
	<atom:link href="http://www.codercorp.com/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codercorp.com/blog</link>
	<description>Everything java</description>
	<lastBuildDate>Wed, 01 Feb 2012 06:25:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Registering PropertyEditors&#8217;s with spring for custom objects by Sreejith V</title>
		<link>http://www.codercorp.com/blog/spring/registering-propertyeditorss-with-spring-for-custom-objects-example.html/comment-page-1#comment-840</link>
		<dc:creator>Sreejith V</dc:creator>
		<pubDate>Wed, 01 Feb 2012 06:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=167#comment-840</guid>
		<description>Nice article.. Thank you so much</description>
		<content:encoded><![CDATA[<p>Nice article.. Thank you so much</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dwr + Spring integration example by guptha</title>
		<link>http://www.codercorp.com/blog/spring/dwr-spring-integration-example-tutorial.html/comment-page-1#comment-839</link>
		<dc:creator>guptha</dc:creator>
		<pubDate>Mon, 30 Jan 2012 12:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=59#comment-839</guid>
		<description>hi

i am new to dwr 
i wish to display data from mysql as drop down list. my list contains state id,state name and country id and i wish to these as drop down in jsp using dwr 
can you suggest in this 

thank you</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>i am new to dwr<br />
i wish to display data from mysql as drop down list. my list contains state id,state name and country id and i wish to these as drop down in jsp using dwr<br />
can you suggest in this </p>
<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pagination &amp; sorting in jsp&#8217;s with the displaytag taglib &amp; spring by saravan</title>
		<link>http://www.codercorp.com/blog/spring/pagination-sorting-in-jsps-with-the-displaytag-taglib-example-tutorial.html/comment-page-1#comment-836</link>
		<dc:creator>saravan</dc:creator>
		<pubDate>Wed, 28 Dec 2011 07:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=145#comment-836</guid>
		<description>Could u mail me the source code of this plz?????????</description>
		<content:encoded><![CDATA[<p>Could u mail me the source code of this plz?????????</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pagination &amp; sorting in jsp&#8217;s with the displaytag taglib &amp; spring by Krishna</title>
		<link>http://www.codercorp.com/blog/spring/pagination-sorting-in-jsps-with-the-displaytag-taglib-example-tutorial.html/comment-page-1#comment-834</link>
		<dc:creator>Krishna</dc:creator>
		<pubDate>Wed, 07 Dec 2011 10:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=145#comment-834</guid>
		<description>Can I have below .css file to get the actual screen and images?

</description>
		<content:encoded><![CDATA[<p>Can I have below .css file to get the actual screen and images?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pagination &amp; sorting in jsp&#8217;s with the displaytag taglib &amp; spring by Krishna</title>
		<link>http://www.codercorp.com/blog/spring/pagination-sorting-in-jsps-with-the-displaytag-taglib-example-tutorial.html/comment-page-1#comment-833</link>
		<dc:creator>Krishna</dc:creator>
		<pubDate>Wed, 07 Dec 2011 10:51:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=145#comment-833</guid>
		<description>You need to first include Stuts tag library in your JSP page, then only you can use this tag</description>
		<content:encoded><![CDATA[<p>You need to first include Stuts tag library in your JSP page, then only you can use this tag</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why ConcurrentHashMap is better than Hashtable and just as good as a HashMap by Rags</title>
		<link>http://www.codercorp.com/blog/java/why-concurrenthashmap-is-better-than-hashtable-and-just-as-good-hashmap.html/comment-page-1#comment-830</link>
		<dc:creator>Rags</dc:creator>
		<pubDate>Fri, 25 Nov 2011 11:29:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=53#comment-830</guid>
		<description>Better explanation is here: http://stackoverflow.com/questions/2836267/concurrenthashmap-in-java specifically &quot;All operations are threadsafe, but there is no happens before promise like there would be with a synchronized map. What you see when you look in a ConcurrentHashMap is the results of the most recently completed operations. Some of which may have begun significantly later in time than when you started trying to look. It works rather like a read-committed database isolation, whereas a synchronized map works more like a serializable database isolation. – Affe May 14 &#039;10 at 17:46&quot;</description>
		<content:encoded><![CDATA[<p>Better explanation is here: <a href="http://stackoverflow.com/questions/2836267/concurrenthashmap-in-java" rel="nofollow">http://stackoverflow.com/questions/2836267/concurrenthashmap-in-java</a> specifically &#8220;All operations are threadsafe, but there is no happens before promise like there would be with a synchronized map. What you see when you look in a ConcurrentHashMap is the results of the most recently completed operations. Some of which may have begun significantly later in time than when you started trying to look. It works rather like a read-committed database isolation, whereas a synchronized map works more like a serializable database isolation. – Affe May 14 &#8217;10 at 17:46&#8243;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ProgressDialog setMax throws NullPointerException by Trenton D. Adams</title>
		<link>http://www.codercorp.com/blog/android/progressdialog-setmax-throws-nullpointerexception.html/comment-page-1#comment-828</link>
		<dc:creator>Trenton D. Adams</dc:creator>
		<pubDate>Wed, 23 Nov 2011 04:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=353#comment-828</guid>
		<description>This does not appear to be a bug.  It appears to be erroneous use of setting the style after the dialog is created.  Apparently you&#039;re not allowed to do that.  I had the same problem, if I create the dialog as described above, and set the style at a later time.  So, the fact of the matter is, if you want to change the style, you need to create a dialog yourself, as described above, and set the style BEFORE calling the show() method.

This makes perfect sense, in that the initialisation of appropriate dialog setup would happen on the request to &quot;show&quot; it.  The only thing that doesn&#039;t make sense, is that google didn&#039;t document it in the show() method.</description>
		<content:encoded><![CDATA[<p>This does not appear to be a bug.  It appears to be erroneous use of setting the style after the dialog is created.  Apparently you&#8217;re not allowed to do that.  I had the same problem, if I create the dialog as described above, and set the style at a later time.  So, the fact of the matter is, if you want to change the style, you need to create a dialog yourself, as described above, and set the style BEFORE calling the show() method.</p>
<p>This makes perfect sense, in that the initialisation of appropriate dialog setup would happen on the request to &#8220;show&#8221; it.  The only thing that doesn&#8217;t make sense, is that google didn&#8217;t document it in the show() method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dwr + Spring integration example by Indrajit</title>
		<link>http://www.codercorp.com/blog/spring/dwr-spring-integration-example-tutorial.html/comment-page-1#comment-821</link>
		<dc:creator>Indrajit</dc:creator>
		<pubDate>Mon, 07 Nov 2011 08:57:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=59#comment-821</guid>
		<description>hi
i am using dwr 3.0 with spring.I have return the List of the DTO TO dwr.java so how to get the value of the list in to the dwr js.I have got the [object Object] in dwr list,so how ro retrive the object value in the dwr.return type is list.</description>
		<content:encoded><![CDATA[<p>hi<br />
i am using dwr 3.0 with spring.I have return the List of the DTO TO dwr.java so how to get the value of the list in to the dwr js.I have got the [object Object] in dwr list,so how ro retrive the object value in the dwr.return type is list.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom AuthenticationProcessingFilter for spring security to perform actions on login by Norman</title>
		<link>http://www.codercorp.com/blog/spring/security-spring/custom-authenticationprocessingfilter-for-spring-security-to-perform-actions-on-login.html/comment-page-1#comment-817</link>
		<dc:creator>Norman</dc:creator>
		<pubDate>Fri, 28 Oct 2011 14:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=178#comment-817</guid>
		<description>Other option.

http://oajamfibia.wordpress.com/2011/07/07/role-based-login-redirect/#comment-12</description>
		<content:encoded><![CDATA[<p>Other option.</p>
<p><a href="http://oajamfibia.wordpress.com/2011/07/07/role-based-login-redirect/#comment-12" rel="nofollow">http://oajamfibia.wordpress.com/2011/07/07/role-based-login-redirect/#comment-12</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom AuthenticationProcessingFilter for spring security to perform actions on login by Gaurav Arora</title>
		<link>http://www.codercorp.com/blog/spring/security-spring/custom-authenticationprocessingfilter-for-spring-security-to-perform-actions-on-login.html/comment-page-1#comment-816</link>
		<dc:creator>Gaurav Arora</dc:creator>
		<pubDate>Fri, 28 Oct 2011 10:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.codercorp.com/blog/?p=178#comment-816</guid>
		<description>Glad to be of help. Wish I was still working with Spring and could help more.</description>
		<content:encoded><![CDATA[<p>Glad to be of help. Wish I was still working with Spring and could help more.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

