在spring中是创建容器时创建的所有bean

In spring are all the beans created at the time of container creation

如果我在 .xml 文件中有 1000 个 bean 配置,所有这些 bean 都是在创建容器时创建的

默认是。所有 bean 都在启动时创建。有 @Lazy 注释允许您延迟初始化直到使用 bean。