AndHow Initialization
How AndHow startup up, configures itself, and your application
Implicit Initialization
My_ANDHOW_PROPERTY.getValue();Explicit Initialization
public static void main(String[] args) {
AndHow.findConfig().setCmdLineArgs(args);
AndHow.instance(); // <-- Initialize
Thread.sleep(1000000);
checkForTaskToDo(); // <-- Configuration is first read here
}Attempting to reconfigure AndHow will throw a RuntimeException
AndHow Initialization Steps in Detail
Last updated