Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

When building web applications, what are some areas where synchronization problems arrise?

0
Posted

When building web applications, what are some areas where synchronization problems arrise?

0

In general, you will run into synchronization issues when you try to access any shared resource. By shared resource, I mean anything which might be used by more than one request. Typical examples include: a) Connections to external servers, especially if you have any sort of pooling. b) Anything which you include in a HttpSession. (Your user could open many browser windows and make many simultaneous requests within the one session.) c) Log destinations, if you do your own logging from your servlets.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123