Skip to content

Commit

Permalink
Fix "spring.factories" typos in database initialization documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
matei-cernaianu authored and snicoll committed May 30, 2022
1 parent 83e8c03 commit eb8b9e1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Spring Boot will automatically detect beans of the following types that initiali
- `SpringLiquibase`

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.
To have other beans be detected, register an implementation of `DatabaseInitializerDetector` in `META-INF/spring-factories`.
To have other beans be detected, register an implementation of `DatabaseInitializerDetector` in `META-INF/spring.factories`.



Expand All @@ -215,5 +215,5 @@ Spring Boot will automatically detect beans of the following types that depends
- `NamedParameterJdbcOperations`

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.
To have other beans be detected, register an implementation of `DependsOnDatabaseInitializationDetector` in `META-INF/spring-factories`.
To have other beans be detected, register an implementation of `DependsOnDatabaseInitializationDetector` in `META-INF/spring.factories`.
Alternatively, annotate the bean's class or its `@Bean` method with `@DependsOnDatabaseInitialization`.

0 comments on commit eb8b9e1

Please sign in to comment.