mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
DevToolsPropertyDefaultsPostProcessor looked for ConfigurableReactiveWebEnvironment in org.springframework.boot.web.reactive.context by name, but the class moved to org.springframework.boot.web.context.reactive in 4.0. As a result, reactive web applications were never identified as web applications and the hint about setting logging.level.web to DEBUG was not logged for them. ConfigurableReactiveWebEnvironment is part of spring-boot, so it is now referenced directly rather than by name. The servlet environment check is unchanged as spring-web is an optional dependency. See gh-51708 Signed-off-by: ohchanKyu <okc0202@naver.com>