<?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 Rockhopper Blog</title>
	<atom:link href="http://rockhoppertech.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://rockhoppertech.com/blog</link>
	<description>Technical Development Topics by Gene De Lisa</description>
	<lastBuildDate>Mon, 14 May 2012 15:46:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on JUnit4, Selenium and Spring test context by Fran</title>
		<link>http://rockhoppertech.com/blog/junit4-selenium-and-spring-test-context/#comment-182</link>
		<dc:creator>Fran</dc:creator>
		<pubDate>Mon, 14 May 2012 15:46:48 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blogs/archives/44#comment-182</guid>
		<description>Just as a comment, 

By convention, a Spring bean name should start lowercase: &quot;selenium&quot; instead of &quot;Selenium&quot;

Cheers,

Fran</description>
		<content:encoded><![CDATA[<p>Just as a comment, </p>
<p>By convention, a Spring bean name should start lowercase: &#8220;selenium&#8221; instead of &#8220;Selenium&#8221;</p>
<p>Cheers,</p>
<p>Fran</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning Clojure: Leiningen by Learning Clojure: Setting up the Emacs on OSX &#124; Rockhopper Blog</title>
		<link>http://rockhoppertech.com/blog/learning-clojure-leiningen/#comment-169</link>
		<dc:creator>Learning Clojure: Setting up the Emacs on OSX &#124; Rockhopper Blog</dc:creator>
		<pubDate>Wed, 18 Apr 2012 15:52:25 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blog/?p=412#comment-169</guid>
		<description>[...] Blog Technical Development Topics by Gene De Lisa   Skip to content AboutResources       &#171; Learning Clojure: Leiningen   Learning Clojure: Setting up the Emacs on OSX By Gene De Lisa &#124; Published: April 12, [...]</description>
		<content:encoded><![CDATA[<p>[...] Blog Technical Development Topics by Gene De Lisa   Skip to content AboutResources       &laquo; Learning Clojure: Leiningen   Learning Clojure: Setting up the Emacs on OSX By Gene De Lisa | Published: April 12, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring @MVC 3 cascading selects using jQuery by Danilo</title>
		<link>http://rockhoppertech.com/blog/spring-mvc-3-cascading-selects-using-jquery/#comment-168</link>
		<dc:creator>Danilo</dc:creator>
		<pubDate>Wed, 21 Mar 2012 13:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blog/?p=278#comment-168</guid>
		<description>Excellent post. I was searching for something like that. 

The good part is that i made some modifications in the code


$.ajax({
	type: &quot;POST&quot;, 
	url: &quot;${findStateCitiesURL}&quot;,
	success: function(data){
		$.each(data, function(val, text){
			$(&#039;#cboState&#039;).append($(&#039;&#039;).val(val).html(text));
		});
	}
});

And in the Controller:


@ResponseBody
@RequestMapping(value = &quot;/cities/{state}&quot;, method = RequestMethod.POST)
public List findStateCities(@PathVariable(&quot;state&quot;) String state, ModelMap map) {
    logger.debug(&quot;finding cities for state &quot; + state);
    return this.geoService.findCitiesForState(state); // as a List or something like that
}

And of course, Jackson is in my pom.xml:


	org.codehaus.jackson
	jackson-mapper-asl
	1.9.5
</description>
		<content:encoded><![CDATA[<p>Excellent post. I was searching for something like that. </p>
<p>The good part is that i made some modifications in the code</p>
<p>$.ajax({<br />
	type: &#8220;POST&#8221;,<br />
	url: &#8220;${findStateCitiesURL}&#8221;,<br />
	success: function(data){<br />
		$.each(data, function(val, text){<br />
			$(&#8216;#cboState&#8217;).append($(&#8221;).val(val).html(text));<br />
		});<br />
	}<br />
});</p>
<p>And in the Controller:</p>
<p>@ResponseBody<br />
@RequestMapping(value = &#8220;/cities/{state}&#8221;, method = RequestMethod.POST)<br />
public List findStateCities(@PathVariable(&#8220;state&#8221;) String state, ModelMap map) {<br />
    logger.debug(&#8220;finding cities for state &#8221; + state);<br />
    return this.geoService.findCitiesForState(state); // as a List or something like that<br />
}</p>
<p>And of course, Jackson is in my pom.xml:</p>
<p>	org.codehaus.jackson<br />
	jackson-mapper-asl<br />
	1.9.5</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring @MVC 3 cascading selects using jQuery by Gene De Lisa</title>
		<link>http://rockhoppertech.com/blog/spring-mvc-3-cascading-selects-using-jquery/#comment-119</link>
		<dc:creator>Gene De Lisa</dc:creator>
		<pubDate>Mon, 28 Nov 2011 18:07:18 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blog/?p=278#comment-119</guid>
		<description>Kamal,

You need a plugin for Eclipse to recognize Maven projects. Some versions of Eclipse, such as Spring&#039;s STS, already have it in the bundle. If you&#039;ve downloaded one of the distributions from eclipse.org, then you need to install it.

There is information on the plugin at the eclipse.org site on installing and using the &lt;a href=&quot;http://eclipse.org/m2e/&quot; rel=&quot;nofollow&quot;&gt;m2e plugin.&lt;/a&gt;

Once you have the plugin installed, you simply unzip the projects I&#039;ve provided and choose the Eclipse menu item &quot;Import&quot; then choose &quot;Existing Maven Project&quot;.</description>
		<content:encoded><![CDATA[<p>Kamal,</p>
<p>You need a plugin for Eclipse to recognize Maven projects. Some versions of Eclipse, such as Spring&#8217;s STS, already have it in the bundle. If you&#8217;ve downloaded one of the distributions from eclipse.org, then you need to install it.</p>
<p>There is information on the plugin at the eclipse.org site on installing and using the <a href="http://eclipse.org/m2e/" rel="nofollow">m2e plugin.</a></p>
<p>Once you have the plugin installed, you simply unzip the projects I&#8217;ve provided and choose the Eclipse menu item &#8220;Import&#8221; then choose &#8220;Existing Maven Project&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring @MVC 3 cascading selects using jQuery by Kamal</title>
		<link>http://rockhoppertech.com/blog/spring-mvc-3-cascading-selects-using-jquery/#comment-118</link>
		<dc:creator>Kamal</dc:creator>
		<pubDate>Mon, 28 Nov 2011 03:36:27 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blog/?p=278#comment-118</guid>
		<description>Hi,
I am new here learning Spring, I like this tutorial, I am new to Maven to, please , I downloaded from the link :
Download Source as a Maven Project

Can you please show me the steps on how to import this project in eclipse.

your help is appreciated,
thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am new here learning Spring, I like this tutorial, I am new to Maven to, please , I downloaded from the link :<br />
Download Source as a Maven Project</p>
<p>Can you please show me the steps on how to import this project in eclipse.</p>
<p>your help is appreciated,<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring @MVC 3 cascading selects using jQuery by david</title>
		<link>http://rockhoppertech.com/blog/spring-mvc-3-cascading-selects-using-jquery/#comment-74</link>
		<dc:creator>david</dc:creator>
		<pubDate>Mon, 24 Oct 2011 06:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blog/?p=278#comment-74</guid>
		<description>thank you very much. using your example i solved my issue with ajax call in spring MVC which i was struggling for almost 2 weeks.</description>
		<content:encoded><![CDATA[<p>thank you very much. using your example i solved my issue with ajax call in spring MVC which i was struggling for almost 2 weeks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring @MVC 3 cascading selects using jQuery by Wijoata</title>
		<link>http://rockhoppertech.com/blog/spring-mvc-3-cascading-selects-using-jquery/#comment-73</link>
		<dc:creator>Wijoata</dc:creator>
		<pubDate>Fri, 21 Oct 2011 19:44:45 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blog/?p=278#comment-73</guid>
		<description>Excelente POST. ;-)</description>
		<content:encoded><![CDATA[<p>Excelente POST. <img src='http://rockhoppertech.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Factory Design Pattern by Mozart and the Flyweight Design Pattern &#124; Rockhopper Blog</title>
		<link>http://rockhoppertech.com/blog/factories/#comment-35</link>
		<dc:creator>Mozart and the Flyweight Design Pattern &#124; Rockhopper Blog</dc:creator>
		<pubDate>Thu, 05 May 2011 13:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blogs/archives/18#comment-35</guid>
		<description>[...] our friend the GoF Factory Design Pattern? Instead of being a micro-managing pointy haired boss (i.e. using the keyword &#8220;new&#8221;) a [...]</description>
		<content:encoded><![CDATA[<p>[...] our friend the GoF Factory Design Pattern? Instead of being a micro-managing pointy haired boss (i.e. using the keyword &#8220;new&#8221;) a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse 3.6 Helios arrives. Plugin update support still needs work by Bob</title>
		<link>http://rockhoppertech.com/blog/eclipse-36-helios-arrives-plugin-update-support-still-needs-work/#comment-23</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Mon, 14 Mar 2011 16:53:48 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blogs/?p=69#comment-23</guid>
		<description>JSF 2.0 is designed to support Ajax. The above comment is only true for JSF 1.x</description>
		<content:encoded><![CDATA[<p>JSF 2.0 is designed to support Ajax. The above comment is only true for JSF 1.x</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse 3.6 Helios arrives. Plugin update support still needs work by Yazilim Tasarim</title>
		<link>http://rockhoppertech.com/blog/eclipse-36-helios-arrives-plugin-update-support-still-needs-work/#comment-21</link>
		<dc:creator>Yazilim Tasarim</dc:creator>
		<pubDate>Thu, 02 Sep 2010 07:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://rockhoppertech.com/blogs/?p=69#comment-21</guid>
		<description>IceFaces is not actually a JSF implementation. It&#039;s a JSF add-on (ajax component library and then some more). Apache MyFaces and Sun&#039;s RI are the implementations.

I was consulting/contracting JSF full time for about two years, and saw relatively little evidence of IceFaces being used in the field. Thinking seemed to be: &quot;JSF is complex enough as it is so we don&#039;t want to add any extra stability-risking complexity on top&quot;. This is not at all isolated to IceFaces, which may well be the best of the bunch, but all JSF Ajax stuff seems to be retrofits on top of a framework that simply was not designed for Ajax.

As of JSF itself; I&#039;v moved to GWT about a year ago (and would NEVER move back to JSF), but to tell the truth JSF served me relatively well. Some architectural and design deficiencies are balanced by the wide industry adaptation.</description>
		<content:encoded><![CDATA[<p>IceFaces is not actually a JSF implementation. It&#8217;s a JSF add-on (ajax component library and then some more). Apache MyFaces and Sun&#8217;s RI are the implementations.</p>
<p>I was consulting/contracting JSF full time for about two years, and saw relatively little evidence of IceFaces being used in the field. Thinking seemed to be: &#8220;JSF is complex enough as it is so we don&#8217;t want to add any extra stability-risking complexity on top&#8221;. This is not at all isolated to IceFaces, which may well be the best of the bunch, but all JSF Ajax stuff seems to be retrofits on top of a framework that simply was not designed for Ajax.</p>
<p>As of JSF itself; I&#8217;v moved to GWT about a year ago (and would NEVER move back to JSF), but to tell the truth JSF served me relatively well. Some architectural and design deficiencies are balanced by the wide industry adaptation.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

