Skip to content

Commit 3a436ee

Browse files
In Spring Boot 4, WebClient auto-configuration (which provides the WebClient.Builder bean) was split out of spring-boot-starter-webflux into a new dedicated spring-boot-starter-webclient module. Added that dependency to pom.xml, which resolves WebClientAutoConfiguration and fixes the missing bean error for bcRegistryApi (and all other WebClient.Builder-dependent beans in GlobalServiceConfiguration).
1 parent e1c7b22 commit 3a436ee

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

backend/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@
9595
<groupId>org.springframework.boot</groupId>
9696
<artifactId>spring-boot-starter-webflux</artifactId>
9797
</dependency>
98+
<dependency>
99+
<groupId>org.springframework.boot</groupId>
100+
<artifactId>spring-boot-starter-webclient</artifactId>
101+
</dependency>
98102
<dependency>
99103
<groupId>ch.qos.logback</groupId>
100104
<artifactId>logback-core</artifactId>

0 commit comments

Comments
 (0)