Commit Graph

8 Commits

Author SHA1 Message Date
Andy Wilkinson
9ee79c1bbc 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.
2025-06-13 20:06:49 -07:00
Andy Wilkinson
0464bf753f Remove actuate from restructured metrics package names 2025-06-13 20:06:46 -07:00
Andy Wilkinson
5d131754cc Move Redis health and metrics auto-config into spring-boot-data-redis 2025-06-13 20:06:43 -07:00
Phillip Webb
2b8dfc0ca8 Move Redis Docker Compose support into spring-boot-data-redis 2025-06-13 20:06:42 -07:00
Stéphane Nicoll
e7cd3bed65 Move Redis testcontainers support into spring-boot-data-redis 2025-06-13 20:06:40 -07:00
Andy Wilkinson
ee458e1909 Move code from spring-boot-actuator to spring-boot-data-redis 2025-06-13 20:06:32 -07:00
Andy Wilkinson
a527e028a7 Create spring-boot-netty module 2025-06-13 20:06:29 -07:00
Stéphane Nicoll
fa0bdc895f Create spring-boot-data-redis module 2025-06-13 20:06:26 -07:00