From 9a0e9bc5e7a11bc9a595f753e26267af3a45c1f6 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Thu, 23 May 2024 16:56:39 +0100 Subject: [PATCH] Fix links in README.md --- websocket-authentication/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/websocket-authentication/README.md b/websocket-authentication/README.md index 553e2ba..8919b6e 100644 --- a/websocket-authentication/README.md +++ b/websocket-authentication/README.md @@ -4,8 +4,8 @@ GraphQL over WebSocket with an authentication token passed through the `"connect # Configuration -[WebMvcSecurityConfig](src/main/java/com/example/greeting/WebMvcSecurityConfig) and -[WebFluxSecurityConfig](src/main/java/com/example/greeting/WebFluxSecurityConfig) configure the +[WebMvcSecurityConfig](src/main/java/com/example/greeting/WebMvcSecurityConfig.java) and +[WebFluxSecurityConfig](src/main/java/com/example/greeting/WebFluxSecurityConfig.java) configure the `AuthenticationWebSocketInterceptor` to perform authentication. See the [reference docs](https://docs.spring.io/spring-graphql/reference/transports.html#server.interception.websocket). @@ -14,7 +14,7 @@ To switch between WebMvc or WebFlux as the transport, comment in and out # Running -1. Run [GreetingApplication](src/main/java/com/example/greeting/GreetingApplication) from your IDE, or `./gradlew bootRun` from the command line to start the server. -2. Run [GreetingClient](src/main/java/com/example/greeting/GreetingClient), or `./gradlew clientRun` to perform a subscription. +1. Run [GreetingApplication](src/main/java/com/example/greeting/GreetingApplication.java) from your IDE, or `./gradlew bootRun` from the command line to start the server. +2. Run [GreetingClient](src/main/java/com/example/greeting/GreetingClient.java), or `./gradlew clientRun` to perform a subscription. -Or you can run the integration tests in [GreetingApplicationTests](src/test/java/com/example/greeting/GreetingApplicationTests). +Or you can run the integration tests in [GreetingApplicationTests](src/test/java/com/example/greeting/GreetingApplicationTests.java).