I am using FXML and Weld SE together. So far it works well except for certain cases.
public class ApiController extends AnchorPane implements Initializable {
@Inject
private ApiFactory apiFactory;
@FXML
private TextArea requestArea;
@FXML
private TextArea responseArea;
public ApiController() {
// creates FXML loader, sets weld controller factory, and assigns "this" to root/controller.
ControlCenter.loadFxml("/view/api.fxml", this);
}
@Override
public void initialize(URL location, ResourceBundle resources) {
// breakpoint here will show "apiFactory" null
}
}
I need to do initialization but only after Weld has injected ApiFactory
implementation. The injection occurs, however, after initialize
is called. How can I initialize my class after Weld injects my dependency?