We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c24ca0 commit 5bea2ecCopy full SHA for 5bea2ec
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/Bootstrapper.java
@@ -31,6 +31,16 @@ public interface Bootstrapper {
31
* Initialize the given {@link BootstrapRegistry} with any required registrations.
32
* @param registry the registry to initialize
33
*/
34
+ default void initialize(BootstrapRegistry registry) {
35
+ }
36
+
37
+ /**
38
+ * Initialize the given {@link BootstrapRegistry} with any required registrations.
39
+ * @param registry the registry to initialize
40
+ * @deprecated since 2.4.4 in favor of
41
+ * {@link Bootstrapper#initialize(BootstrapRegistry)}
42
+ */
43
+ @Deprecated
44
void intitialize(BootstrapRegistry registry);
45
46
}
0 commit comments