Safe « Session « Java Enterprise Q&A





1. EJB session bean Thread Safety    stackoverflow.com

What is the exactly meaning of EJB session bean thread safety? what happens if I define static ArrayList in the session beans (as you know ArrayList doesn't support multi thread) OR I mark my ...

2. Is it safe to make authorization decisions based on session attributes?    stackoverflow.com

So I'm implementing custom security on my Java EE app. What I'm doing is every time a user attempts to log in, if the e-mail and password are correct, I'm saving ...

3. Session attr. thread safety    coderanch.com

I m, having an application and i have problem in session attribute thread safety.I m opening the same application from the two same browser window(say--Mozilla) and accessing the same application.Now the problem is that when i do something on first browser then the changes will be reflected on another.I got the solution also that to synchronize the session object. But i ...