Class JspConfig


  • public class JspConfig
    extends java.lang.Object
    Handles the jsp-config element in WEB_INF/web.xml. This is used for specifying the JSP configuration information on a JSP page
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  JspConfig.JspProperty
      Represents the JSP property configuration values for a JSP page or group of pages.
      static class  JspConfig.JspPropertyGroup
      Represents a JSP property group with a path, extension, and associated JSP property.
    • Constructor Summary

      Constructors 
      Constructor Description
      JspConfig​(ServletContext ctxt)
      Creates a new JspConfig instance for the given servlet context.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      JspConfig.JspProperty findJspProperty​(java.lang.String uri)
      Find a property that best matches the supplied resource.
      boolean isJspPage​(java.lang.String uri)
      To find out if a uri matches a url pattern in jsp config.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • JspConfig

        public JspConfig​(ServletContext ctxt)
        Creates a new JspConfig instance for the given servlet context.
        Parameters:
        ctxt - the servlet context
    • Method Detail

      • findJspProperty

        public JspConfig.JspProperty findJspProperty​(java.lang.String uri)
        Find a property that best matches the supplied resource.
        Parameters:
        uri - the resource supplied.
        Returns:
        a JspProperty indicating the best match, or some default.
      • isJspPage

        public boolean isJspPage​(java.lang.String uri)
        To find out if a uri matches a url pattern in jsp config. If so, then the uri is a JSP page. This is used primarily for jspc.
        Parameters:
        uri - The path to check
        Returns:
        true if the path denotes a JSP page