Skip to content
Advertisement

How to add security for spring 5 websockets

I followed the following tutorial: Using WebSocket to build an interactive web application

Everything works as described and aplication looks fine. I just have a nice controller:

JavaScript

And a bit configuration.

Now I want to add security for this simple application. I spent time to find an example but I could not find it.

Generally I’ve found the tutorial:

Preview Spring Security WebSocket Support

But looks like this example relevant for spring 4 only rather than spring 5. And I don’t understand where should I provide credentials and so on. Description is not enough detailed to apply it for my example.

One more tutorial I’ve found: Websocket Authentication and Authorization in Spring Ask

It looks more clear but I am not sure that it is the best solution for now.

Can you advise the simplest way to configure spring security for my application?

P.S. Also I’ve found not the same but familiar question How to secure websocket application [Spring boot + STOMP] but there are no answers at the moment.

UPDATE for locus2k

Now I have following configuration:

JavaScript

Bit when I start application I see stacktrace:

JavaScript

Advertisement

Answer

Provided stacktrace related with the incompatible library versions.

It works if to use correct dependencies. For example:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement