Commit Graph

6 Commits

Author SHA1 Message Date
Phillip Webb 3ca1e91cde Create spring-boot-health module
Closes gh-46155
2025-07-01 12:31:12 +01:00
Andy Wilkinson c474f24fe8 Break cycle in spring-boot-data-* modules
There was a cycle in the spring-boot-data-* modules.

SpringDataWebAutoConfiguration (which sits at the spring-data-commons
level) referenced RepositoryRestMvcAutoConfiguration (which sits
at the spring-data-rest level). This dependency's expressed in the
wrong direction as data-rest depends on data-commons. The resulting
cycle was not noticable as it was expressed through a String afterName
attribute on `@AutoConfiguration`.

spring-boot-data-commons was also using spring-boot-data-jpa for its
tests, which also results in an inverted dependency relationship.

This commit reworks things so that all of the spring-boot-data-*
modules depend upon spring-boot-data-commons, mirroring the
dependency relationship in Spring Data. The integration tests in
spring-boot-data-commons have been reworked to use Spring Data
directly, avoiding the need for a circular from
spring-boot-data-commons to another spring-boot-data-* module.

See gh-46071
2025-07-01 12:02:58 +01:00
Andy Wilkinson f93c7a7c74 Move Data MongoDB health auto-configuration to spring-data-mongodb
Closes gh-46114
2025-07-01 12:02:07 +01:00
Andy Wilkinson 18459f8101 Move code from spring-boot-actuator to spring-boot-data-mongodb
Closes gh-46115
2025-07-01 11:59:17 +01:00
Andy Wilkinson c449158b2a Create spring-boot-reactor module
Closes gh-46142
2025-07-01 11:58:20 +01:00
Andy Wilkinson 3fe58a2c39 Create spring-boot-data-mongodb module
See gh-46115
2025-07-01 11:56:35 +01:00