diff --git a/docs/manual/src/docs/asciidoc/_includes/servlet/web/websocket.adoc b/docs/manual/src/docs/asciidoc/_includes/servlet/web/websocket.adoc index 8dd70cb2c6..f0fa456369 100644 --- a/docs/manual/src/docs/asciidoc/_includes/servlet/web/websocket.adoc +++ b/docs/manual/src/docs/asciidoc/_includes/servlet/web/websocket.adoc @@ -28,7 +28,7 @@ public class WebSocketSecurityConfig protected void configureInbound(MessageSecurityMetadataSourceRegistry messages) { messages - .simpDestMatchers("/user/*").authenticated() // <3> + .simpDestMatchers("/user/**").authenticated() // <3> } } ----