Replace use of "Spring MVC" in spring-webflux module
Issue: SPR-15190
This commit is contained in:
parent
fafd2d20e1
commit
080a3d6a41
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -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 @Configuration class
|
||||
|
|
|
|||
Loading…
Reference in New Issue