Which scope to use for a series of pages, each dependent on the previous page?
问题 Currently I have four pages that are each backed by their own RequestScoped managed bean. An example of this would be the following... backing search.xhtml @RequestScoped SearchBean backing result.xhtml @RequestScoped ResultBean backing detail.xhtml @RequestScoped DetailBean backing action.xhtml @RequestScoped ActionBean In each page (except for the search page), I inject the bean from the previous page to access the input parameters. For instance... @RequestScoped public class Result {