我是Struts的新手。我很好奇我怎么能在没有CDI / Spring的Struts 1.x中做到这一点:
public class MyBean {
private OtherBean ob;
public MyBean(){
ob = (OtherBean) StrutsContext.getInstance()...;
}
}
在JSF中的usIall CDI我可以简单地@Inject:
public class MyBean {
@Inject
private OtherBean ob;
//getter and setter;
}
我需要在MyBean方法中执行OtherBean方法。