I'm using Spring Boot 3.5.6 with next dependencies in classpath
implementation("org.springframework.boot:spring-boot-starter-webflux")
implementation("org.springframework.boot:spring-boot-starter-web")
I added the following properties:
spring.main.web-application-type=reactive
spring.threads.virtual.enabled=true
Is it expected that RestClientAutoConfiguration
doesn't get enabled?
|
@Conditional(NotReactiveWebApplicationOrVirtualThreadsExecutorEnabledCondition.class) |