I’m trying to make the connection to hibernate change dynamically based on the application user logged in. I.E. Every application user will have his own oracle schema. To do so, I changed the values of dataSourceUnproxied.username and dataSourceUnproxied.password dynamically from the code depending on the logged on user, then I closed the connection and got the connection again with the new settings. It worked, but the problem is if two users are logged in to my application at the same time, the connection will be set to the connection of the last logged in user, and both users will use the same connection again. It seems that these variables are application scoped variables, which set the value for all the users.
Is there a way to make these values different based on the user session?