public static void main(String[] args) {
// Bruce Notes: args is required like: standalone, hub...
new Main(System.out, System.err, args).go();
}
2)调用go方法
void go() {
// It's not private to make it visible for tests
if (args.length == 0) {
showHelp(Main.class.getClassLoader());
} else {
launch(args, Main.class.getClassLoader());
}
}