Multiple choice technology programming languages

What are the drawbacks of Struts?

  1. backword overflow

  2. forward overflow

  3. Single controller servlet

  4. no forward overflow

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

A key drawback of Struts framework is its single controller servlet architecture (ActionServlet). All requests must route through one servlet, which can create bottlenecks and scaling issues in high-traffic applications. Modern frameworks like Spring MVC support multiple controllers. The other options (backward/forward overflow) are not recognized drawbacks of Struts.