Page 1 of 1

About Question enthuware.jwpv6.2.691 :

Posted: Fri Dec 16, 2011 3:40 am
by ETS User
I think it is necessary to add valid "session" parameter to explanation to make it clear that "taglib" is the correct answer.

Re: About Question enthuware.jwpv6.2.691 :

Posted: Sun Dec 18, 2011 8:53 am
by admin
The explanation has been updated.
Thank you for your feedback!

Re: About Question enthuware.jwpv6.2.691 :

Posted: Thu Jan 19, 2012 7:02 am
by goetz
Explanation under 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 .
However, the JSP spec says regarding isThreadSafe:
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.
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.