I am using a library on my Spring Boot application and this library is exposing a WebSocket endpoint for the clients to communicate. In my use case, I want to enrich the data this library is sending on the WebSocket. I'm thinking of adding a WebSocket interceptor to capture the data and manipulate it, but I am not sure whether it's possible to add an interceptor to a WebSocket endpoint that is exposed by a third party library.
Asked
Active
Viewed 739 times
2
-
2Does this answer your question? [How to intercept connection and subscription with Spring Stomp](https://stackoverflow.com/questions/49756686/how-to-intercept-connection-and-subscription-with-spring-stomp) – Rusu Dinu Oct 01 '21 at 06:08
-
I want to add an inceptor to an endpoint that was exposed by a third party library on my project. The above one doesn’t solve my issue – Ron Oct 02 '21 at 08:11