REST WebService and concurrency in java
3 answers
It depends on what you mean by "handle concurrency". Do you need to write code to create threads for every incoming request? No, Jersey will create a new thread for every request before it calls your API method. Do you need to worry about admission DELETE
when someone else is GET
in the file? Yes.
+2
source to share