@ -58,7 +58,7 @@ public class OptionalDependenciesPlugin implements Plugin<Project> {
@@ -58,7 +58,7 @@ public class OptionalDependenciesPlugin implements Plugin<Project> {
@ -61,12 +61,12 @@ public class HealthIndicatorRegistryInjectionIntegrationTests {
@@ -61,12 +61,12 @@ public class HealthIndicatorRegistryInjectionIntegrationTests {
@ -93,7 +93,7 @@ Spring Boot Loader-compatible jar and war archives can include additional index
@@ -93,7 +93,7 @@ Spring Boot Loader-compatible jar and war archives can include additional index
A `classpath.idx` file can be provided for both jars and wars, it provides the ordering that jars should be added to the classpath.
The `layers.idx` file can be used only for jars, it allows a jar to be split into logical layers for Docker/OCI image creation.
Index files follow a YAML compatible syntax so that they can be eaily parsed by third-party tools.
Index files follow a YAML compatible syntax so that they can be easily parsed by third-party tools.
These files, however, are _not_ parsed internally as YAML and they must be written in exactly the formats described below in order to be used.
@ -93,7 +93,7 @@ If a misconfigured bean is initialized lazily, a failure will no longer occur du
@@ -93,7 +93,7 @@ If a misconfigured bean is initialized lazily, a failure will no longer occur du
Care must also be taken to ensure that the JVM has sufficient memory to accommodate all of the application's beans and not just those that are initialized during startup.
For these reasons, lazy initialization is not enabled by default and it is recommended that fine-tuning of the JVM's heap size is done before enabling lazy initialization.
Lazy initialization can be enabled programatically using the `lazyInitialization` method on `SpringApplicationBuilder` or the `setLazyInitialization` method on `SpringApplication`.
Lazy initialization can be enabled programmatically using the `lazyInitialization` method on `SpringApplicationBuilder` or the `setLazyInitialization` method on `SpringApplication`.
Alternatively, it can be enabled using the configprop:spring.main.lazy-initialization[] property as shown in the following example: