Multiple choice technology programming languages

Implementing the tag < %@ page isThreadSafe="false" % >implements the SingleThreadModel interface making the Jsp

  1. None of the above

  2. content safe

  3. synchornised

  4. thread safe

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

Setting <%@ page isThreadSafe="false" %> indicates the JSP is not thread-safe, implementing the SingleThreadModel interface. This ensures only one thread executes the JSP at a time by serializing requests through the same servlet instance, making it thread-safe by preventing concurrent access.