Fix links in README.md

This commit is contained in:
Rossen Stoyanchev
2024-05-23 16:56:39 +01:00
committed by GitHub
parent 7df68b9dfd
commit 9a0e9bc5e7

View File

@@ -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).