I'm currently using JDBC sessions across multiple applications, configured with Spring security. What I need is for all sessions of a same user to use the same session across all applications.
For example, user1 logs into his account into applicationA, this creates a session in the database correctly. After that, that same user1 logs into applicationB from a different browser, what I need is for that user to share its session across both applications, so that from applicationA the user can save something into its session and make it accesible from applicationB.
I know that I can achieve this if I manually change the SessionId cookie from the browser in applicationB, but what I need is for spring to do this on its own after login.
I have found a similar question here: How to get same session with Spring Security and Spring Session From multiple server
But the answer is not correct.
Additional info JDBC: Oracle Configuration: All in Java