-
Bug
-
Resolution: Done
-
Major
-
None
-
None
-
Documentation (Ref Guide, User Guide, etc.)
http://docs.jboss.org/weld/reference/latest/en-US/html_single/#weld-se
public static void main(String[] args) {
WeldContainer weld = new Weld().initialize();
weld.instance().select(MyApplicationBean.class).get();
weld.shutdown();
}
versus
From which I conclude that the example's call to shutdown() is wrong.