<?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"
	>
<channel>
	<title>Comments on: Spring MVC: How it works</title>
	<atom:link href="http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/</link>
	<description>Software, the Internet and you.</description>
	<pubDate>Mon, 12 May 2008 16:15:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Zuquirio Ámaur</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-44265</link>
		<dc:creator>Zuquirio Ámaur</dc:creator>
		<pubDate>Wed, 23 Jan 2008 12:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-44265</guid>
		<description>Hi,

That's really a good post. Thanks for the work.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>That&#8217;s really a good post. Thanks for the work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spring Portlet MVC (Tutoriaux) &#124; Tellaw.org</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-43799</link>
		<dc:creator>Spring Portlet MVC (Tutoriaux) &#124; Tellaw.org</dc:creator>
		<pubDate>Tue, 15 Jan 2008 12:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-43799</guid>
		<description>[...] Un Article : http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Un Article : <a href="http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/" rel="nofollow">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Knight rider</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-43166</link>
		<dc:creator>Knight rider</dc:creator>
		<pubDate>Thu, 03 Jan 2008 19:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-43166</guid>
		<description>Well can someone post an example for spring mvc using jdbcDaoSupport or simpleJdbc?. A web application where user can add, delete or update records in the database using spring mvc.

Thanks</description>
		<content:encoded><![CDATA[<p>Well can someone post an example for spring mvc using jdbcDaoSupport or simpleJdbc?. A web application where user can add, delete or update records in the database using spring mvc.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bennett</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-14634</link>
		<dc:creator>Bennett</dc:creator>
		<pubDate>Wed, 10 Jan 2007 08:21:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-14634</guid>
		<description>Saurav, that might indeed be helpful. It would take quite a while to write it up though. The controller hierarchy alone is fairly complex, with dozens of methods that can be overridden in the various classes. You really have to take the Reference Documentation's advice and thouroughly review the javadocs for the entire hierarchy...</description>
		<content:encoded><![CDATA[<p>Saurav, that might indeed be helpful. It would take quite a while to write it up though. The controller hierarchy alone is fairly complex, with dozens of methods that can be overridden in the various classes. You really have to take the Reference Documentation&#8217;s advice and thouroughly review the javadocs for the entire hierarchy&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saurav</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-14395</link>
		<dc:creator>saurav</dc:creator>
		<pubDate>Mon, 08 Jan 2007 07:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-14395</guid>
		<description>hi bennett,
the article is great.
but i suppose the flow could be more easily understood if u could do a code walkthrough(just a basic one) with the same amount of explanation.
it would surely help anyone realise the concepts in a much better way.</description>
		<content:encoded><![CDATA[<p>hi bennett,<br />
the article is great.<br />
but i suppose the flow could be more easily understood if u could do a code walkthrough(just a basic one) with the same amount of explanation.<br />
it would surely help anyone realise the concepts in a much better way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bennett</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-12533</link>
		<dc:creator>Bennett</dc:creator>
		<pubDate>Fri, 22 Dec 2006 08:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-12533</guid>
		<description>Steve, one approach is this: don't do the DB lookup in your controller's action handler. Instead, add a ParameterMappingInterceptor to your handler mapping so the form parameters will be included in the render request as well. Then do the DB lookup in the controller's render handler and return the data in the ModelAndView.

I've used this approach in my current project. It does mean that the DB query gets repeated with every render request though. If your DB query is especially heavyweight then you might need to do the query in the action handler and save the results in the portlet session.</description>
		<content:encoded><![CDATA[<p>Steve, one approach is this: don&#8217;t do the DB lookup in your controller&#8217;s action handler. Instead, add a ParameterMappingInterceptor to your handler mapping so the form parameters will be included in the render request as well. Then do the DB lookup in the controller&#8217;s render handler and return the data in the ModelAndView.</p>
<p>I&#8217;ve used this approach in my current project. It does mean that the DB query gets repeated with every render request though. If your DB query is especially heavyweight then you might need to do the query in the action handler and save the results in the portlet session.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Roach</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-11169</link>
		<dc:creator>Steve Roach</dc:creator>
		<pubDate>Sun, 10 Dec 2006 15:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-11169</guid>
		<description>Great post. I got a lot out of it.
OK, I'm having a problem after posting a form, I can see the form posted and I can bind object. My issue is I have done a database lookup during the process and would like to display the results. How would I do that? all the methods that implement the "action" part of the Controller interface does not return a ModelAndView. Is it some basic Spring fundamental I'm missing?</description>
		<content:encoded><![CDATA[<p>Great post. I got a lot out of it.<br />
OK, I&#8217;m having a problem after posting a form, I can see the form posted and I can bind object. My issue is I have done a database lookup during the process and would like to display the results. How would I do that? all the methods that implement the &#8220;action&#8221; part of the Controller interface does not return a ModelAndView. Is it some basic Spring fundamental I&#8217;m missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bennett</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-9631</link>
		<dc:creator>Bennett</dc:creator>
		<pubDate>Fri, 24 Nov 2006 02:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-9631</guid>
		<description>&lt;strong&gt;Neeraj&lt;/strong&gt;, the Spring Framework Reference Documentation has a lot of information in it. I recommend reading it in some depth. Also, the &lt;a href="http://sourceforge.net/cvs/?group_id=73357" rel="nofollow"&gt;Spring CVS repository&lt;/a&gt; contains a sample portal application that showcases many portlet MVC features.</description>
		<content:encoded><![CDATA[<p><strong>Neeraj</strong>, the Spring Framework Reference Documentation has a lot of information in it. I recommend reading it in some depth. Also, the <a href="http://sourceforge.net/cvs/?group_id=73357" rel="nofollow">Spring CVS repository</a> contains a sample portal application that showcases many portlet MVC features.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neeraj Sidhaye</title>
		<link>http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-9577</link>
		<dc:creator>Neeraj Sidhaye</dc:creator>
		<pubDate>Thu, 23 Nov 2006 09:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.thunderguy.com/semicolon/2006/11/23/spring-mvc-how-it-works/#comment-9577</guid>
		<description>Hello Author,
I am also exploring Spring Portlet MVC framework and your article give me a good start. Really a good job.
I would love to learn this Framework and also if you can uplaod some sample
HelloWorld portlet based on Spring Portlet MVC Framework, that would be great.

Thanks again.
Neeraj Sidhaye
Try_Catch_Finally AT YAHOO DOT COM
http://ExtremePortal.blog.co.uk</description>
		<content:encoded><![CDATA[<p>Hello Author,<br />
I am also exploring Spring Portlet MVC framework and your article give me a good start. Really a good job.<br />
I would love to learn this Framework and also if you can uplaod some sample<br />
HelloWorld portlet based on Spring Portlet MVC Framework, that would be great.</p>
<p>Thanks again.<br />
Neeraj Sidhaye<br />
Try_Catch_Finally AT YAHOO DOT COM<br />
<a href="http://ExtremePortal.blog.co.uk" rel="nofollow">http://ExtremePortal.blog.co.uk</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
