Browse Source

Replace use of "Spring MVC" in spring-webflux module

Issue: SPR-15190
pull/1313/head
Rossen Stoyanchev 8 years ago
parent
commit
080a3d6a41
  1. 2
      spring-webflux/src/main/java/org/springframework/web/reactive/config/ResourceHandlerRegistry.java
  2. 2
      spring-webflux/src/main/java/org/springframework/web/reactive/resource/ResourceUrlProvider.java
  3. 4
      spring-webflux/src/main/java/org/springframework/web/reactive/result/view/script/ScriptTemplateConfigurer.java

2
spring-webflux/src/main/java/org/springframework/web/reactive/config/ResourceHandlerRegistry.java

@ -33,7 +33,7 @@ import org.springframework.web.server.WebHandler; @@ -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.

2
spring-webflux/src/main/java/org/springframework/web/reactive/resource/ResourceUrlProvider.java

@ -43,7 +43,7 @@ import org.springframework.web.server.support.HttpRequestPathHelper; @@ -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.
*
* <p>This class is aware of Spring MVC handler mappings used to serve static
* <p>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.
*

4
spring-webflux/src/main/java/org/springframework/web/reactive/result/view/script/ScriptTemplateConfigurer.java

@ -20,8 +20,8 @@ import java.nio.charset.Charset; @@ -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.
*
* <pre class="code">
* // Add the following to an &#64;Configuration class

Loading…
Cancel
Save