Correct static-path-pattern property in WebFlux documentation

Closes gh-10843
This commit is contained in:
Andy Wilkinson 2017-11-12 11:24:02 +00:00
parent 806cf32549
commit f1555319c4

View File

@ -2461,12 +2461,12 @@ By default, Spring Boot serves static content from a directory called `/static`
your own `WebFluxConfigurer` and overriding the `addResourceHandlers` method.
By default, resources are mapped on `+/**+`, but you can tune that by setting the
`spring.mvc.static-path-pattern` property. For instance, relocating all resources to
`spring.webflux.static-path-pattern` property. For instance, relocating all resources to
`/resources/**` can be achieved as follows:
[source,properties,indent=0,subs="verbatim,quotes,attributes"]
----
spring.mvc.static-path-pattern=/resources/**
spring.webflux.static-path-pattern=/resources/**
----
You can also customize the static resource locations by using