View Single Post
  #12  
Old 09-13-2007, 01:39 AM
Venkat Venkat is offline
D-Web Master
 
Join Date: Mar 2007
Posts: 347
Venkat is on a distinguished road
Thumbs up Re: Java/J2EE interview Questions

How does JSP engines instantiate tag handler classes instances?

JSP engines will always instantiate a new tag handler instance every time a tag is encounteredin a JSP page. A pool of tag instances are maintained and reusing them where possible.When a tag is encountered, the JSP engine will try to find a Tag instance that is not beingused and use the same and then release
__________________
Venkat
knowledge is Power
Reply With Quote