org.apache.jasper.runtime
public class TagHandlerPool extends Object
Field Summary | |
---|---|
protected AnnotationProcessor | annotationProcessor |
static String | OPTION_MAXSIZE |
static String | OPTION_TAGPOOL |
Constructor Summary | |
---|---|
TagHandlerPool()
Constructs a tag handler pool with the default capacity. | |
TagHandlerPool(int capacity)
Constructs a tag handler pool with the given capacity.
|
Method Summary | |
---|---|
Tag | get(Class handlerClass)
Gets the next available tag handler from this tag handler pool,
instantiating one if this tag handler pool is empty.
|
protected static String | getOption(ServletConfig config, String name, String defaultV) |
static TagHandlerPool | getTagHandlerPool(ServletConfig config) |
protected void | init(ServletConfig config) |
void | release()
Calls the release() method of all available tag handlers in this tag
handler pool. |
void | reuse(Tag handler)
Adds the given tag handler to this tag handler pool, unless this tag
handler pool has already reached its capacity, in which case the tag
handler's release() method is called.
|
Deprecated: Use static getTagHandlerPool
Constructs a tag handler pool with the given capacity.Parameters: capacity Tag handler pool capacity
Parameters: handlerClass Tag handler class
Returns: Reused or newly instantiated tag handler
Throws: JspException if a tag handler cannot be instantiated
Parameters: handler Tag handler to add to this tag handler pool