Tuesday, January 5, 2016

RESTful web services - What happens if RestFull resources are accessed by multiple clients ? do you need to make it thread-safe?

Since a new Resource instance is created for every incoming Request there is no need to make it thread-safe or add synchronization. multiple client can safely access RestFull resources concurrently.

No comments:

Post a Comment