I read that the Google App Engine Java development server only works with one servlet thread.
I would like to simulate two threads working in parallel so that in debug mode I could pause one of them and observe the correct behavior of the other.
It seems that when I put a breakpoint and make a call from two different tabs in Chrome, only one of them breaks.
Is this even possible? What other ways can I simulate such a scenario to check thread safety?
(in particular, I am trying to observe the behavior of jdo transactions)
ps I have <threadsafe>true</threadsafe>
in appengine-web.xml
source share