We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5284981 commit 7a2fc2fCopy full SHA for 7a2fc2f
framework-docs/modules/ROOT/pages/web/webflux/config.adoc
@@ -699,7 +699,7 @@ Java::
699
public class WebConfig implements WebFluxConfigurer {
700
701
@Override
702
- public void configurePathMatch(PathMatchConfigurer configurer) {
+ public void configurePathMatching(PathMatchConfigurer configurer) {
703
configurer.addPathPrefix(
704
"/api", HandlerTypePredicate.forAnnotation(RestController.class));
705
}
@@ -715,7 +715,7 @@ Kotlin::
715
class WebConfig : WebFluxConfigurer {
716
717
718
- fun configurePathMatch(configurer: PathMatchConfigurer) {
+ fun configurePathMatching(configurer: PathMatchConfigurer) {
719
720
"/api", HandlerTypePredicate.forAnnotation(RestController::class.java))
721
0 commit comments