{{theTime}}

Search This Blog

Total Pageviews

Servlets multi threaded Service method


Threading
A servlet must be able to handle multiple concurrent requests. Any number of end users at any given time could invoke the servlet, and while the init method is always run single-threaded, the servicemethod is multi-threaded to handle multiple requests.
This means any static or public fields accessed by the service method should be restricted to simple thread access. The example below uses the synchronized keyword to restrict access to a counter so it can only be updated by one thread at a time:
  int counter
  Boolean lock = new Boolean(true);

  synchronized(lock){
    counter++;
  }

No comments:

Top LLMs in 2025

Navigating the AI Landscape: Key Differences Between Top LLMs in 2025 As of late September 2025, the large language model (LLM) arena is m...