> That's right,
> But can u please further explain what practices can be bad in this
> context?
The text you quoted in the first place describes the constraints pretty
well. You must not expose the request or response object to view by
other threads. That could happen by storing one of them in the session
or application, by assigning one to a static or instance variable of a
servlet, by making one visible to a thread that you start yourself,
etc.. The list is infinite, but those are some of the most likely abuses.
> That what all a developer should take care regarding this "CLAUSE" so
> that his coding does not become bad.
A servlet (including JSPs) should not expose the request or response it
is handling to other threads (see above). Furthermore, a servlet should
never rely on (or hold) a request or response past the end or servicing
the corresponding request.

Signature
John Bollinger
jobollin@indiana.edu