installAll

fun ApplicationBuilder<*>.installAll(classLoader: ClassLoader = this.currentClassLoader)

尝试加载所有的 ComponentAutoRegistrarFactoryComponentAutoRegistrarFactory 并注册到 ApplicationBuilder 中。

相当于同时使用 installAllComponentsinstallAllEventProviders

simbotApplication(Foo) {
installAllComponents(classLoader)
installAllEventProviders(classLoader)
}