Class JspApplicationContextImpl

    • Constructor Detail

      • JspApplicationContextImpl

        public JspApplicationContextImpl()
    • Method Detail

      • fireListeners

        protected void fireListeners​(ELContext elContext)
      • addELResolver

        public void addELResolver​(ELResolver resolver)
                           throws java.lang.IllegalStateException
        Description copied from interface: jakarta.servlet.jsp.JspApplicationContext

        Adds an ELResolver to the chain of EL variable and property management within JSP pages and Tag files.

        JSP has a default set of ELResolvers to chain for all EL evaluation:

        • ImplicitObjectELResolver
        • ELResolver instances registered with this method
        • MapELResolver
        • ListELResolver
        • ArrayELResolver
        • BeanELResolver
        • ScopedAttributeELResolver
        Specified by:
        addELResolver in interface JspApplicationContext
        Parameters:
        resolver - an additional resolver
        Throws:
        java.lang.IllegalStateException - if called after the application's ServletContextListeners have been initialized.