Skip to content

Commit c6403c2

Browse files
author
Andreas Höhmann
committed
wip: restclient vs. webclient
- wee need both starters because of import of RestTemplateAutoConfiguration, RestClientAutoConfiguration and WebClientAutoConfiguration in SpringBootAdminClientAutoConfiguration - locally (win 11, gitbash, eclipse) ClientServletApplicationTest not working, the --spring.jackson.property-naming-strategy=SNAKE_CASE is not used (no glue why) - in github build its working - why is this? - locally SpringBootAdminClientRegistrationClientAutoConfigurationTest is also not working 100% - a lot of "wrong" RegistrationClient are created, doesn't matter which "builders" are in the spring context - in github build its working - why is this?
1 parent a29b28d commit c6403c2

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

spring-boot-admin-client/pom.xml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@
4444
<groupId>org.springframework</groupId>
4545
<artifactId>spring-web</artifactId>
4646
</dependency>
47-
<dependency>
48-
<groupId>org.springframework.boot</groupId>
49-
<artifactId>spring-boot-http-client</artifactId>
50-
<optional>true</optional>
51-
</dependency>
5247
<dependency>
5348
<groupId>org.springframework.boot</groupId>
5449
<artifactId>spring-boot-restclient</artifactId>
@@ -61,12 +56,12 @@
6156
</dependency>
6257
<dependency>
6358
<groupId>org.springframework.boot</groupId>
64-
<artifactId>spring-boot-webflux</artifactId>
59+
<artifactId>spring-boot-starter-web</artifactId>
6560
<optional>true</optional>
6661
</dependency>
6762
<dependency>
6863
<groupId>org.springframework.boot</groupId>
69-
<artifactId>spring-boot-starter-web</artifactId>
64+
<artifactId>spring-boot-starter-webflux</artifactId>
7065
<optional>true</optional>
7166
</dependency>
7267
<dependency>
@@ -98,11 +93,6 @@
9893
<artifactId>spring-boot-starter-test</artifactId>
9994
<scope>test</scope>
10095
</dependency>
101-
<dependency>
102-
<groupId>org.springframework.boot</groupId>
103-
<artifactId>spring-boot-starter-webflux</artifactId>
104-
<scope>test</scope>
105-
</dependency>
10696
<dependency>
10797
<groupId>org.wiremock</groupId>
10898
<artifactId>wiremock-standalone</artifactId>

0 commit comments

Comments
 (0)