Question:
下面的代码在干嘛?
getSpringFactoriesInstances(Bootstrapper.class).stream()
.map((bootstrapper) -> ((BootstrapRegistryInitializer) bootstrapper::initialize))
.forEach(initializers::add);
问点是这段:
(bootstrapper) -> ((BootstrapRegistryInitializer) bootstrapper::initialize)
网友评论