Class AllHttpScopesHashModel

All Implemented Interfaces:
TemplateHashModel, TemplateHashModelEx, TemplateHashModelEx2, TemplateModel, Serializable

public class AllHttpScopesHashModel extends SimpleHash
An extension of SimpleHash that looks up keys in the hash, then in the request, session, and servlet context scopes. Makes "Application", "Session" and "Request" keys largely obsolete, however we keep them for backward compatibility (also, "Request" is required for proper operation of JSP taglibs). It is on purpose that we didn't override keys and values methods. That way, only those variables assigned into the hash directly by a subclass of FreemarkerServlet that overrides preTemplateProcess) are discovered as "page" variables by the FM JSP PageContext implementation.

Note that this is for the legacy "javax" Servlet/JSP API; for Jakarta (that is, in modern Servlet containers), use freemarker.ext.jakarta.servlet.AllHttpScopesHashModel instead (since 2.3.33).

See Also:
Serialized Form
  • Constructor Details

    • AllHttpScopesHashModel

      public AllHttpScopesHashModel(ObjectWrapper objectWrapper, jakarta.servlet.ServletContext context, jakarta.servlet.http.HttpServletRequest request)
      Creates a new instance of AllHttpScopesHashModel for handling a single HTTP servlet request.
      Parameters:
      objectWrapper - the object wrapper to use; not null.
      context - the servlet context of the web application
      request - the HTTP servlet request being processed
  • Method Details

    • putUnlistedModel

      public void putUnlistedModel(String key, TemplateModel model)
      Stores a model in the hash so that it doesn't show up in keys() and values() methods. Used to put the Application, Session, Request, RequestParameters and JspTaglibs objects.
      Parameters:
      key - the key under which the model is stored
      model - the stored model
    • get

      public TemplateModel get(String key) throws TemplateModelException
      Description copied from interface: TemplateHashModel
      Gets a TemplateModel from the hash.
      Specified by:
      get in interface TemplateHashModel
      Overrides:
      get in class SimpleHash
      Parameters:
      key - The name by which the TemplateModel is identified in the template.
      Returns:
      The TemplateModel referred to by the key, or null if not found.
      Throws:
      TemplateModelException