public class JspCompilationContext extends Object
Most of the path-related stuff is here - mangling names, versions, dirs, loading resources and dealing with uris.
Constructor and Description |
---|
JspCompilationContext(String jspUri,
boolean isErrPage,
Options options,
javax.servlet.ServletContext context,
JspServletWrapper jsw,
JspRuntimeContext rctxt) |
JspCompilationContext(String tagfile,
javax.servlet.jsp.tagext.TagInfo tagInfo,
Options options,
javax.servlet.ServletContext context,
JspServletWrapper jsw,
JspRuntimeContext rctxt,
URL tagFileJarUrl) |
Modifier and Type | Method and Description |
---|---|
void |
addTaglib(String uri,
TagLibraryInfoImpl taglib)
Adds the given tag library with the given URI to the context-wide
tag library cache.
|
void |
clearTagFileJarUrls()
Clears the context-wide mappings from JAR packaged tag file paths to
their corresponding URLs.
|
void |
clearTaglibs()
Clears the context-wide tag library cache.
|
void |
compile() |
Compiler |
createCompiler(boolean jspcMode)
Create a "Compiler" object.
|
Compiler |
createParser()
Create a compiler object for parsing only.
|
String |
getClassFileName() |
ClassLoader |
getClassLoader()
What class loader to use for loading classes while compiling
this JSP?
|
String |
getClassPath()
The classpath that is passed off to the Java compiler.
|
Compiler |
getCompiler() |
String |
getContentType()
Get the content type of this JSP.
|
String |
getFullClassName()
Full class name
|
String |
getJavaPath()
Path of the Java file relative to the work directory.
|
String |
getJspFile()
Path of the JSP URI.
|
ClassLoader |
getJspLoader() |
Options |
getOptions()
Get hold of the Options object for this context.
|
String |
getOutputDir()
The output directory to generate code into.
|
String |
getRealPath(String path)
Gets the actual path of a URI relative to the context of
the compilation.
|
URL |
getResource(String res) |
InputStream |
getResourceAsStream(String res)
Gets a resource as a stream, relative to the meanings of this
context's implementation.
|
Set |
getResourcePaths(String path) |
JspRuntimeContext |
getRuntimeContext() |
String |
getServletClassName()
Just the class name (does not include package name) of the
generated class.
|
javax.servlet.ServletContext |
getServletContext() |
String |
getServletJavaFileName()
Full path name of the Java file into which the servlet is being
generated.
|
String |
getServletPackageName()
Package name for the generated class is make up of the base package
name, which is user settable, and the derived package name.
|
URL |
getTagFileJarUrl()
Returns the JAR file in which the tag file for which this
JspCompilationContext was created is packaged, or null if this
JspCompilationContext does not correspond to a tag file, or if the
corresponding tag file is not packaged in a JAR.
|
ConcurrentHashMap<String,URL> |
getTagFileJarUrls()
Gets the context-wide mappings from JAR packaged tag file paths to
their corresponfing URLs.
|
javax.servlet.jsp.tagext.TagInfo |
getTagInfo() |
ConcurrentHashMap<String,TagLibraryInfoImpl> |
getTaglibs()
Gets the context-wide tag library cache.
|
String[] |
getTldLocation(String uri)
Gets the 'location' of the TLD associated with the given taglib 'uri'.
|
ServletWriter |
getWriter()
Where is the servlet being generated?
|
void |
incrementRemoved() |
boolean |
isErrorPage()
Are we processing something that has been declared as an
errorpage?
|
boolean |
isPrototypeMode()
True if we are compiling a tag file in prototype mode.
|
boolean |
isRemoved() |
boolean |
isTagFile() |
boolean |
keepGenerated()
Are we keeping generated code around?
|
Class |
load() |
void |
makeOutputDir() |
String |
resolveRelativeUri(String uri)
Get the full value of a URI relative to this compilations context
uses current file as the base.
|
void |
setClassLoader(URLClassLoader loader) |
void |
setClassPath(String classPath)
The classpath that is passed off to the Java compiler.
|
void |
setContentType(String contentType) |
void |
setErrorPage(boolean isErrPage) |
void |
setPrototypeMode(boolean pm) |
void |
setServletClassName(String className) |
void |
setServletPackageName(String servletPackageName)
The package name into which the servlet class is generated.
|
void |
setTagInfo(javax.servlet.jsp.tagext.TagInfo tagi) |
void |
setWriter(ServletWriter writer) |
public JspCompilationContext(String jspUri, boolean isErrPage, Options options, javax.servlet.ServletContext context, JspServletWrapper jsw, JspRuntimeContext rctxt) throws JasperException
JasperException
public JspCompilationContext(String tagfile, javax.servlet.jsp.tagext.TagInfo tagInfo, Options options, javax.servlet.ServletContext context, JspServletWrapper jsw, JspRuntimeContext rctxt, URL tagFileJarUrl) throws JasperException
JasperException
public void addTaglib(String uri, TagLibraryInfoImpl taglib)
uri
- The tag library URItaglib
- The tag library to addpublic ConcurrentHashMap<String,TagLibraryInfoImpl> getTaglibs()
public void clearTaglibs()
public void clearTagFileJarUrls()
public String getClassPath()
public void setClassPath(String classPath)
public ClassLoader getClassLoader()
public void setClassLoader(URLClassLoader loader)
public String getOutputDir()
public Compiler createParser() throws JasperException
JasperException
public Compiler createCompiler(boolean jspcMode) throws JasperException
JasperException
public Compiler getCompiler()
public String resolveRelativeUri(String uri)
public InputStream getResourceAsStream(String res) throws JasperException
JasperException
public URL getResource(String res) throws MalformedURLException
MalformedURLException
public Set getResourcePaths(String path) throws JasperException
JasperException
public String getRealPath(String path)
public ConcurrentHashMap<String,URL> getTagFileJarUrls()
public URL getTagFileJarUrl()
public String getServletClassName()
public void setServletClassName(String className)
public String getJspFile()
public boolean isErrorPage()
public void setErrorPage(boolean isErrPage)
public boolean isTagFile()
public javax.servlet.jsp.tagext.TagInfo getTagInfo()
public void setTagInfo(javax.servlet.jsp.tagext.TagInfo tagi)
public boolean isPrototypeMode()
public void setPrototypeMode(boolean pm)
public String getServletPackageName()
public void setServletPackageName(String servletPackageName)
public String getServletJavaFileName()
public Options getOptions()
public javax.servlet.ServletContext getServletContext()
public JspRuntimeContext getRuntimeContext()
public String getFullClassName()
public String getJavaPath()
public String getClassFileName()
public String getContentType()
Content type includes content type and encoding.
public void setContentType(String contentType)
public ServletWriter getWriter()
public void setWriter(ServletWriter writer)
public String[] getTldLocation(String uri) throws JasperException
JasperException
public boolean keepGenerated()
public void incrementRemoved()
public boolean isRemoved()
public void compile() throws JasperException, FileNotFoundException
JasperException
FileNotFoundException
public Class load() throws JasperException
JasperException
public ClassLoader getJspLoader()
public void makeOutputDir()
Copyright © 2006–2018 TinyGroup. All rights reserved.