Package org.apache.jasper.compiler
Class JspConfig
- java.lang.Object
- 
- org.apache.jasper.compiler.JspConfig
 
- 
 public class JspConfig extends java.lang.ObjectHandles the jsp-config element in WEB_INF/web.xml. This is used for specifying the JSP configuration information on a JSP page- Author:
- Kin-man Chung, Remy Maucherat
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classJspConfig.JspPropertystatic classJspConfig.JspPropertyGroup
 - 
Constructor SummaryConstructors Constructor Description JspConfig(ServletContext ctxt)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description JspConfig.JspPropertyfindJspProperty(java.lang.String uri)Find a property that best matches the supplied resource.booleanisJspPage(java.lang.String uri)To find out if a uri matches a url pattern in jsp config.
 
- 
- 
- 
Constructor Detail- 
JspConfigpublic JspConfig(ServletContext ctxt) 
 
- 
 - 
Method Detail- 
findJspPropertypublic 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.
 
 - 
isJspPagepublic 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:
- trueif the path denotes a JSP page
 
 
- 
 
-