From fd1a6db9717d35bf4df851db998866064d86ab22 Mon Sep 17 00:00:00 2001 From: Guillaume Berche Date: Tue, 8 Sep 2020 11:11:40 +0200 Subject: [PATCH] Refine sample spring security sample to mention similar example for webflux is necessary --- .../src/docs/asciidoc/service-broker-security.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-open-service-broker-docs/src/docs/asciidoc/service-broker-security.adoc b/spring-cloud-open-service-broker-docs/src/docs/asciidoc/service-broker-security.adoc index dd28121b..b5763255 100644 --- a/spring-cloud-open-service-broker-docs/src/docs/asciidoc/service-broker-security.adoc +++ b/spring-cloud-open-service-broker-docs/src/docs/asciidoc/service-broker-security.adoc @@ -11,7 +11,7 @@ by applying security to application endpoints with the path-matching pattern: `/ === Example Configuration -The following example implements a security configuration: +The following example implements a security configuration in a https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html[Spring MVC] i.e blocking webstack. Similar config for a https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html[Spring WebFlux] reactive stack is necessary, see https://docs.spring.io/spring-security/site/docs/current/reference/html5/#minimal-webflux-security-configuration[Spring security webflux support] ==== [source,java,%autofit]