diff --git a/spring-webflux/src/main/java/org/springframework/web/reactive/config/ResourceHandlerRegistry.java b/spring-webflux/src/main/java/org/springframework/web/reactive/config/ResourceHandlerRegistry.java index 9b64714674..aeaefd0215 100644 --- a/spring-webflux/src/main/java/org/springframework/web/reactive/config/ResourceHandlerRegistry.java +++ b/spring-webflux/src/main/java/org/springframework/web/reactive/config/ResourceHandlerRegistry.java @@ -33,7 +33,7 @@ import org.springframework.web.server.WebHandler; /** * Stores registrations of resource handlers for serving static resources such - * as images, css files and others through Spring MVC including setting cache + * as images, css files and others through Spring WebFlux including setting cache * headers optimized for efficient loading in a web browser. Resources can be * served out of locations under web application root, from the classpath, and * others. diff --git a/spring-webflux/src/main/java/org/springframework/web/reactive/resource/ResourceUrlProvider.java b/spring-webflux/src/main/java/org/springframework/web/reactive/resource/ResourceUrlProvider.java index bbdc67449c..0e36916260 100644 --- a/spring-webflux/src/main/java/org/springframework/web/reactive/resource/ResourceUrlProvider.java +++ b/spring-webflux/src/main/java/org/springframework/web/reactive/resource/ResourceUrlProvider.java @@ -43,7 +43,7 @@ import org.springframework.web.server.support.HttpRequestPathHelper; * A central component to use to obtain the public URL path that clients should * use to access a static resource. * - *

This class is aware of Spring MVC handler mappings used to serve static + *

This class is aware of Spring WebFlux handler mappings used to serve static * resources and uses the {@code ResourceResolver} chains of the configured * {@code ResourceHttpRequestHandler}s to make its decisions. * diff --git a/spring-webflux/src/main/java/org/springframework/web/reactive/result/view/script/ScriptTemplateConfigurer.java b/spring-webflux/src/main/java/org/springframework/web/reactive/result/view/script/ScriptTemplateConfigurer.java index 2eafab7fdd..eee09342f1 100644 --- a/spring-webflux/src/main/java/org/springframework/web/reactive/result/view/script/ScriptTemplateConfigurer.java +++ b/spring-webflux/src/main/java/org/springframework/web/reactive/result/view/script/ScriptTemplateConfigurer.java @@ -20,8 +20,8 @@ import java.nio.charset.Charset; import javax.script.ScriptEngine; /** - * An implementation of Spring MVC's {@link ScriptTemplateConfig} for creating - * a {@code ScriptEngine} for use in a web application. + * An implementation of the Spring WebFlux {@link ScriptTemplateConfig} for + * creating a {@code ScriptEngine} for use in a web application. * *

  * // Add the following to an @Configuration class