Hi,
My application is a web application which I chose to use
JSF. Now, being that performance is a paramount requirement, would it be better to use a JSF managed bean with session scope or Stateful session beans to maintain conversational state with client?
I know that maintaining session state in stateful session beans is a BluePrints best practice, but aren't they too heavyweight when compared to HttpSession? Also, I've separated my web and
EJB tiers to run on different servers and each server itself is clustered.. I know some web servers do provide HttpSession clustering, so I mentioned I'd be using one that could guarantee that.
Important notice: there's no mention of other non web applications (i.e. swing app) accessing the business tier of my application. This is very misleading when taking such decision.
Any comment will be greatly appreciated.
Best regards,