You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/data-initialization.adoc
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -200,7 +200,7 @@ Spring Boot will automatically detect beans of the following types that initiali
200
200
- `SpringLiquibase`
201
201
202
202
If you are using a third-party starter for a database initialization library, it may provide a detector such that beans of other types are also detected automatically.
203
-
To have other beans be detected, register an implementation of `DatabaseInitializerDetector` in `META-INF/spring-factories`.
203
+
To have other beans be detected, register an implementation of `DatabaseInitializerDetector` in `META-INF/spring.factories`.
204
204
205
205
206
206
@@ -215,5 +215,5 @@ Spring Boot will automatically detect beans of the following types that depends
215
215
- `NamedParameterJdbcOperations`
216
216
217
217
If you are using a third-party starter data access library, it may provide a detector such that beans of other types are also detected automatically.
218
-
To have other beans be detected, register an implementation of `DependsOnDatabaseInitializationDetector` in `META-INF/spring-factories`.
218
+
To have other beans be detected, register an implementation of `DependsOnDatabaseInitializationDetector` in `META-INF/spring.factories`.
219
219
Alternatively, annotate the bean's class or its `@Bean` method with `@DependsOnDatabaseInitialization`.
0 commit comments