How to add custom VariableResolver to JSP Context in Jsp 2.0 to support special EL?
问题 I'm building my own JSP Tag Library which need to support some features that Application developers can use like this: <w:user-label id="usrlb" value="${session.user}"/> <w:textbox id="tb" label="User Name" value="${usrlb.value.name}"/> which means I want my EL can interact with my Tag declaration. and also I need to add stack concept into this library to support "id namespace" or something. My current research leads me to wrap default JspFactory like this: JspFactory.setDefaultFactory(new