I am designing a web application that requires loading multiple components on a single page. (In terms of page layout is similar to Google reader) I like to keep these components separate from each other (for reasons such as reusability). For example, I have a left panel that let's user navigate among multiple feeds that he's subscribed to (user specific) and on the right side of that we show the contents of that feed, and maybe a right panel which shows some specific info about that specific feed. My understanding of MVC and more specifically Spring-MVC is that each controller is in change of the entire page. Here are 2 solutions that I have came up with after researching this a bit, and none of them sounds good to me. 1 - Have a main controller that is mapped to that URL, and then load the other components from inside the jsp file. This is doable but doesn't sound like a good solution 2- using portlets.
I want to know what are the best practices. This sounds like a very common web design issue in MVC frameworks, how do people do it?