On 7/20/05, Stephane Grenier <[EMAIL PROTECTED]> wrote: > Let's say I have a table with it's own backend bean that I want to > re-use at several places in our web application, basically add that > table with other different components on several pages. Is the best > method to just use jsp includes for the common jsp code (ie. the code > generating the table)?
Probably. I went the other route of building a custom composite component and using that instead, but it's a lot of work that wouldn't be required if you're using static component structures. Take a look at using x:aliasBean as well with your includes.

