jsp implicit objects

all the implicit objects in jsp are not used in every jsp still they were available for all the jsp's won't it cause memory waste? why those objects are given bydefault to all the jsp applications?
[206 byte] By [Suri.ya] at [2007-10-3 9:49:15]
# 1
what objects?
alban.maillerea at 2007-7-15 5:06:16 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

No it won't cause memory waste. At least not much. Not enough to be significant in any case.

Most of those implicit variables (eg request, response) are required to service the request, and are just provided for your convenience to access useful data.

They don't have any more scope than they absolutely require. A lot of these implicit variables are declared for the calling of the jsp_service method and then discarded.

I'd say you are wasting time optimizing in the wrong place.

evnafetsa at 2007-7-15 5:06:16 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...