Multiple choice technology web technology

Struts is threatsafe or not ?

  1. yes, request is handled by a light-weight Action object

  2. struts threadsafe depends on action class logic

  3. no

  4. none of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Struts is designed to be thread-safe by creating a new (or reusing a pooled) lightweight Action instance for each request. Each Action invocation operates on its own ActionForm instance with no shared state between requests, making thread safety the default when developers follow best practices.