I have a question on Simple tags.
Suppose there is a Simple tag handler class with <name>mytag<name> in the TLD
considering the taglib directive is set appropriately in the jsp,
and calling nested tags as shown below , how many instances of the tag handler class will be created?
will there be only One instance created.
or because Simple tag handler class instances are not reused by the container, for every tag invocation in the jsp, a new instance is created?
As per my understanding, there will be 3 instances created. is that correct?