<?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 Codemunchies</title>
	<atom:link href="http://codemunchies.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://codemunchies.com</link>
	<description>Satisfy your cravings</description>
	<lastBuildDate>Fri, 27 Aug 2010 16:29:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Beautiful code with Google Collections, Guava and static imports &#8211; Part 1! by Conociendo Google Guava &#171; HAT</title>
		<link>http://codemunchies.com/2009/10/beautiful-code-with-google-collections-guava-and-static-imports-part-1/comment-page-1/#comment-695</link>
		<dc:creator>Conociendo Google Guava &#171; HAT</dc:creator>
		<pubDate>Fri, 27 Aug 2010 16:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=105#comment-695</guid>
		<description>[...] Beautiful Code with Google Collections [...]</description>
		<content:encoded><![CDATA[<p>[...] Beautiful Code with Google Collections [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring MVC form validation with Hibernate Validator by Sampath</title>
		<link>http://codemunchies.com/2010/07/spring-mvc-form-validation-with-hibernate-validator/comment-page-1/#comment-630</link>
		<dc:creator>Sampath</dc:creator>
		<pubDate>Tue, 10 Aug 2010 17:08:25 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=389#comment-630</guid>
		<description>if errors presence, it goes back to same page. But i am loosing my drop down values. Should I set all the form data related fields (eg: drop down values, etc)  again in the if block (if (results.hasErrors()) ??</description>
		<content:encoded><![CDATA[<p>if errors presence, it goes back to same page. But i am loosing my drop down values. Should I set all the form data related fields (eg: drop down values, etc)  again in the if block (if (results.hasErrors()) ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring MVC form validation with Hibernate Validator by jl</title>
		<link>http://codemunchies.com/2010/07/spring-mvc-form-validation-with-hibernate-validator/comment-page-1/#comment-435</link>
		<dc:creator>jl</dc:creator>
		<pubDate>Thu, 22 Jul 2010 10:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=389#comment-435</guid>
		<description>How about using validation groups?</description>
		<content:encoded><![CDATA[<p>How about using validation groups?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring MVC form validation with Hibernate Validator by Jaran Nilsen</title>
		<link>http://codemunchies.com/2010/07/spring-mvc-form-validation-with-hibernate-validator/comment-page-1/#comment-420</link>
		<dc:creator>Jaran Nilsen</dc:creator>
		<pubDate>Tue, 20 Jul 2010 06:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=389#comment-420</guid>
		<description>@Chad You are absolutely right, and the generics were there when the post was created. It seems Wordpress decided to remove them in the saving process :) Fixed it now. Thanks for pointing it out!</description>
		<content:encoded><![CDATA[<p>@Chad You are absolutely right, and the generics were there when the post was created. It seems Wordpress decided to remove them in the saving process <img src='http://codemunchies.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Fixed it now. Thanks for pointing it out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring MVC form validation with Hibernate Validator by Chad Shryock</title>
		<link>http://codemunchies.com/2010/07/spring-mvc-form-validation-with-hibernate-validator/comment-page-1/#comment-417</link>
		<dc:creator>Chad Shryock</dc:creator>
		<pubDate>Tue, 20 Jul 2010 01:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=389#comment-417</guid>
		<description>Using the code provided, I couldn&#039;t get it to work until I added the generics to the ConstraintValidator:

&lt;code&gt;
public class UrlValidator implements ConstraintValidator {
    @Override
    public void initialize(final Url target) {
    }
    @Override
    public boolean isValid(final String url,
            final ConstraintValidatorContext context) {
        return url.startsWith(&quot;http&quot;);
    }
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Using the code provided, I couldn&#8217;t get it to work until I added the generics to the ConstraintValidator:</p>
<p><code><br />
public class UrlValidator implements ConstraintValidator {<br />
    @Override<br />
    public void initialize(final Url target) {<br />
    }<br />
    @Override<br />
    public boolean isValid(final String url,<br />
            final ConstraintValidatorContext context) {<br />
        return url.startsWith("http");<br />
    }<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring MVC form validation with Hibernate Validator by Jaran Nilsen</title>
		<link>http://codemunchies.com/2010/07/spring-mvc-form-validation-with-hibernate-validator/comment-page-1/#comment-399</link>
		<dc:creator>Jaran Nilsen</dc:creator>
		<pubDate>Sun, 18 Jul 2010 11:31:14 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=389#comment-399</guid>
		<description>Hi, Augustin. 

The syntax for the error message keys is as follows: 

&lt;code&gt;Constraint.CommandName.FieldName&lt;/code&gt;

Example: 

&lt;code&gt;NotEmpty.userForm.name&lt;/code&gt;

Hope this helps. 

Jaran</description>
		<content:encoded><![CDATA[<p>Hi, Augustin. </p>
<p>The syntax for the error message keys is as follows: </p>
<p><code>Constraint.CommandName.FieldName</code></p>
<p>Example: </p>
<p><code>NotEmpty.userForm.name</code></p>
<p>Hope this helps. </p>
<p>Jaran</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring MVC form validation with Hibernate Validator by Agustin</title>
		<link>http://codemunchies.com/2010/07/spring-mvc-form-validation-with-hibernate-validator/comment-page-1/#comment-379</link>
		<dc:creator>Agustin</dc:creator>
		<pubDate>Fri, 16 Jul 2010 19:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=389#comment-379</guid>
		<description>Hi, great post. I have a question.
What is the sintax for the errors messaged keys in the resouce boundle?

{key} = Name must be provided

Thanks</description>
		<content:encoded><![CDATA[<p>Hi, great post. I have a question.<br />
What is the sintax for the errors messaged keys in the resouce boundle?</p>
<p>{key} = Name must be provided</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Preconditions, Multimaps and partitioning with Google Collections (part 4) by Computing Map on Google Collections &#171; firdau.si</title>
		<link>http://codemunchies.com/2009/11/preconditions-multimaps-and-partitioning-with-google-collections-part-4/comment-page-1/#comment-310</link>
		<dc:creator>Computing Map on Google Collections &#171; firdau.si</dc:creator>
		<pubDate>Mon, 05 Jul 2010 13:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=249#comment-310</guid>
		<description>[...] Preconditions, MultiMaps, and Partitioning with Google Collections [...]</description>
		<content:encoded><![CDATA[<p>[...] Preconditions, MultiMaps, and Partitioning with Google Collections [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Beautiful code with Google Collections, Guava and static imports &#8211; Part 1! by Computing Map on Google Collections &#171; firdau.si</title>
		<link>http://codemunchies.com/2009/10/beautiful-code-with-google-collections-guava-and-static-imports-part-1/comment-page-1/#comment-309</link>
		<dc:creator>Computing Map on Google Collections &#171; firdau.si</dc:creator>
		<pubDate>Mon, 05 Jul 2010 13:13:07 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=105#comment-309</guid>
		<description>[...] Beautiful code with Google Collections, Guava, and Static Imports [...]</description>
		<content:encoded><![CDATA[<p>[...] Beautiful code with Google Collections, Guava, and Static Imports [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple UI mockup with Mockingbird by Robert Neher</title>
		<link>http://codemunchies.com/2010/06/simple-ui-mockup-with-mockingbird/comment-page-1/#comment-300</link>
		<dc:creator>Robert Neher</dc:creator>
		<pubDate>Sat, 26 Jun 2010 03:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://codemunchies.com/?p=379#comment-300</guid>
		<description>Hi Jaran,

Nice finding.

Asked the two authors about integration into Polarion ALM.

BR
Robert</description>
		<content:encoded><![CDATA[<p>Hi Jaran,</p>
<p>Nice finding.</p>
<p>Asked the two authors about integration into Polarion ALM.</p>
<p>BR<br />
Robert</p>
]]></content:encoded>
	</item>
</channel>
</rss>
