Hello,

I have a request-scoped bean that retrieves a parameter from the browser. I want to subsequently use that same parameter in order to instanciate a session-scoped bean and I do not want the session-bean to be instanciated before the first request is made to the request-scoped bean. The session-scoped bean is a member variable of the request-scoped bean.

This is the constructor for the session-scoped bean:

Code:
public WorkOfArtSuggestionView(Integer myParam) {
   this.myParam = myParam;
}
What do you think of my design? How do I go about configuring the xml?

Thanks in advance,

Julien.