PDA

View Full Version : JSF DelegatingVariableResolver and Session Scope


tony_k
Oct 5th, 2005, 10:04 AM
if i have a JSF managed bean, JB1, declared as session scope and i specify a property for JB1, called SB1, which is a prototype spring managed bean, will SB1 effectively be session scoped as well?

in other words, will JSF obtain one (and only one) new SB1 for each JB1/session?

Wolf Benz
Aug 22nd, 2006, 04:18 AM
I would advise you to try out Spring 2, and declare the scope of your SB1 as "session". These scoping facilities are one of teh improvements of Spring2.
Good luck