File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
framework-docs/modules/ROOT/pages/web/webflux Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -699,7 +699,7 @@ Java::
699699 public class WebConfig implements WebFluxConfigurer {
700700
701701 @Override
702- public void configurePathMatch (PathMatchConfigurer configurer) {
702+ public void configurePathMatching (PathMatchConfigurer configurer) {
703703 configurer.addPathPrefix(
704704 "/api", HandlerTypePredicate.forAnnotation(RestController.class));
705705 }
@@ -715,7 +715,7 @@ Kotlin::
715715 class WebConfig : WebFluxConfigurer {
716716
717717 @Override
718- fun configurePathMatch (configurer: PathMatchConfigurer) {
718+ fun configurePathMatching (configurer: PathMatchConfigurer) {
719719 configurer.addPathPrefix(
720720 "/api", HandlerTypePredicate.forAnnotation(RestController::class.java))
721721 }
You can’t perform that action at this time.
0 commit comments