InterviewSolution
Saved Bookmarks
| 1. |
How does JSP engines instantiate tag handler classes instances? |
|
Answer» JSP engines will always instantiate a new tag handler instance every time a tag is encountered in 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 being used and use the same and then release it. |
|