Hello,
I have reactive spring client and CAS server. I can't integrate them directly, because java cas-client library is not reactive, and if i import that dependency, my spring project doesn't work. because imported library is dependent on MVC/servlet stack and it doesn't work at reactive base.
So, I integrate them not directly, but by OpenID connect. I have configured my CAS server as also OAuth server, and it works as expected.
But, I cannot logout from spring client. Because, logout filters and related classes are not configured at reactive spring client, and these jobs were done by java cas-client library.
So, how can i logout from my reactive spring client? Any idea or any advice? Does someone encounter same problem?
Many thanks.