I've had a confusing time determining how to partition my JSF Beans.
What i have in mind currently :
- Have a single JSF Bean (ViewScope - to support multitab in the browser) for every single JSF xhtml page
- I can share parameters using the view params or the flash scope scope
- Have a session bean that shares a context object that contains the user information, etc that can be shared for all view-scoped-JSF-beans
Do you have any suggestions on how to decide / design the JSF Beans ?
Thank you !
Update
Sorry for not being clear on partitioning thing :
What i had in mind in partitioning the JSF Beans is about, what will be the factor for creating a JSF Bean. Or in another word, how should i divide the beans based on the functions ? or in another word, what is the best practice desigining the JSF Beans ?
And my original post was to ask for opinion whether it's ok to design like what i currently have in mind.
Is it ok to have one view-scoped-bean to handle each page, or is it bad because the beans got too many as the amount of pages increase, or perhaps something else ?
And as an additional note, this post actually sparks from one of the comments in my other post
I'll also suggest to review your architecture. Are you sure you need all thoses beans, partitionned exactly like this? This sounds like something which will be difficult to maintain.