-
Notifications
You must be signed in to change notification settings - Fork 99
Closed
Description
As a developer, I want to use stateless authentication in my app based on Fusion and Spring Security, so that it does not rely on server-side sessions.
Steps in a V22 Fusion / Spring Security application:
- Following the docs, use
setStatelessAuthenticationto enable stateless authentication - Start the dev server, open in the browser and log in
- Restart the server without reloading the browser page
- After the restart, make an endpoint call from the browser
Expected:
The endpoint call resolves.
Actual:
The endpoint call rejects, there is an Invalid CSRF token error in CsrfFilter on the server side visible in spring security debug logs.