We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@ServerEndpoint has the option to provide a Configurator, which can be configured as follows:
@ServerEndpoint
@ServerEndpoint(value = "/ws", configurator = SpringConfigurator.class)
We want the same for the @ClientEndpoint, but this is not so simple.
@ClientEndpoint
Examples seem to indicate that StandardWebsocketClient is the way to go https://stackoverflow.com/questions/28304384/how-to-correctly-implement-a-spring-websocket-java-client
StandardWebsocketClient
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@ServerEndpoint
has the option to provide a Configurator, which can be configured as follows:We want the same for the
@ClientEndpoint
, but this is not so simple.Examples seem to indicate that
StandardWebsocketClient
is the way to go https://stackoverflow.com/questions/28304384/how-to-correctly-implement-a-spring-websocket-java-clientThe text was updated successfully, but these errors were encountered: