I'm writing a JSF application, and I need to inject a named bean into another, for example:
@Named
@SessionScoped
public class BeanA implements Serializable{
@Inject private BeanB b;
public void doSth(){
b.doSth();
}
}
@Named
@SessionScoped
public class BeanB implements Serializable{}
Both of them are SessionScoped, and I hope an instance of BeanA and its injected BeanB would hold a same session state.
Does it pick or create an BeanB instance randomly or select the one with same session id?Thanks!