Interface ResourceInjector
public interface ResourceInjector
Interface for injecting injectable resources into tag handler instances.
-
Method Summary
Modifier and TypeMethodDescription<T extends JspTag>
TcreateTagHandlerInstance(Class<T> clazz) Instantiates and injects the given tag handler class.voidpreDestroy(JspTag handler) Invokes any @PreDestroy methods defined on the instance's class (and super-classes).
-
Method Details
-
createTagHandlerInstance
-
preDestroy
Invokes any @PreDestroy methods defined on the instance's class (and super-classes).- Parameters:
handler- The tag handler instance whose @PreDestroy methods to call
-