In a B/S web system(J2EE, Jsp,servlet ),if user a and user b click the same button at the same time.
Do they create two new threads on the server side?
If a static method will be called in that button event, will that two new threads access the static method concurrently?
If so, should I care about the thread-safe issue?
It would be very appreciated if someone may explain this to me,thank you.