You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 29, 2023. It is now read-only.
In the setupRoutes method you force the creation of cookies:
router.route().handler(CookieHandler.create());
and the use of session:
SessionHandler sessionHandler = SessionHandler.create(LocalSessionStore.create(vertx));
Why?
If you use only json web token (JWT) - i.e. in angular applications - you don't need cookies and session.
The text was updated successfully, but these errors were encountered:
In the setupRoutes method you force the creation of cookies:
router.route().handler(CookieHandler.create());
and the use of session:
SessionHandler sessionHandler = SessionHandler.create(LocalSessionStore.create(vertx));
Why?
If you use only json web token (JWT) - i.e. in angular applications - you don't need cookies and session.
The text was updated successfully, but these errors were encountered: