About Question enthuware.jwpv6.2.691 :
Posted: Fri Dec 16, 2011 3:40 am
I think it is necessary to add valid "session" parameter to explanation to make it clear that "taglib" is the correct answer.
Java Certification Resources and Java Discussion Forum
https://enthuware.com/forum/
However, the JSP spec says regarding isThreadSafe:The JSP standard allows multiple instances of a JSP to exist for JSPs that are not thread safe. This enables the container to handle requests more efficiently .
It seems the spec is mandating the container to serialize access against a single JSP servlet instance? This goes against what the Servlet spec says regarding SingleThreadModel, which allows implementation to serialize OR create multiple instances.Indicates the level of thread safety implemented in the page. If false then the JSP container shall dispatch multiple outstanding client requests, one at a time, in the order they were received, to the page implementation for processing.