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 |