When a Servlet implements SingleThreadModel interface, the container is required to use an object of a servlet to serve a single request at a time. To serve multiple requests, container can maintain a pool of servlet objects, each instance serving a single request. my question is that all the container support the pool of servlet objects behaviour and how can we define this pool in container.
SCJP1.2 <br />SCWCD1.4
Engin Okucu
Ranch Hand
Joined: Feb 09, 2002
Posts: 174
posted
0
Unfortunately, all not servlet container support it.
Adnan Ahmed
Greenhorn
Joined: Aug 18, 2003
Posts: 17
posted
0
Engin its okie that all the containers not support pool of servlet instances. i want to know that if a container support it then whether we will be configured the container or container automatically provide it.