public class JspCompilationContext extends Object
Constructor and Description |
---|
JspCompilationContext(String jspUri,
boolean isErrPage,
Options options,
javax.servlet.ServletContext context,
JspRuntimeContext rctxt,
boolean defaultIsSession) |
JspCompilationContext(String tagfile,
javax.servlet.jsp.tagext.TagInfo tagInfo,
Options options,
javax.servlet.ServletContext context,
JspRuntimeContext rctxt,
boolean defaultIsSession,
URL tagFileJarUrl) |
Modifier and Type | Method and Description |
---|---|
void |
checkOutputDir() |
JasperException |
compile() |
boolean |
delete(String fileName)
Removes a (generated) file.
|
String |
getClassFileName() |
ClassLoader |
getClassLoader()
What class loader to use for loading classes while compiling
this JSP?
|
Compiler |
getCompiler() |
String |
getContentType()
Get the content type of this JSP.
|
protected String |
getDerivedPackageName() |
InputStream |
getInputStream(String fileName)
Creates an input stream from the given file
|
String |
getJavaPath()
Path of the Java file relative to the work directory.
|
String |
getJspFile()
Path of the JSP URI.
|
Options |
getOptions()
Get hold of the Options object for this context.
|
String |
getOutputDir()
The output directory to generate code into.
|
OutputStream |
getOutputStream(String fileName)
Creates an output stream to the given file
|
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<String> |
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.
|
URL |
getTagFileJarUrl(String tagFile)
Returns the tag-file-name-to-JAR-file map of this compilation unit,
which maps tag file names to the JAR files in which the tag files are
packaged.
|
javax.servlet.jsp.tagext.TagInfo |
getTagInfo() |
String[] |
getTldLocation(String uri)
Gets the 'location' of the TLD associated with the given taglib 'uri'.
|
ServletWriter |
getWriter()
Where is the servlet being generated?
|
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 |
isTagFile() |
boolean |
keepGenerated()
Are we keeping generated code around?
|
Class<?> |
load() |
boolean |
rename(String oldFileName,
String newFileName)
Renams then old file to the new file
|
String |
resolveRelativeUri(String uri)
Get the full value of a URI relative to this compilations context
uses current file as the base.
|
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 |
setTagFileJarUrl(String tagFile,
URL tagFileURL) |
void |
setTagInfo(javax.servlet.jsp.tagext.TagInfo tagi) |
void |
setWriter(ServletWriter writer) |
public JspCompilationContext(String jspUri, boolean isErrPage, Options options, javax.servlet.ServletContext context, JspRuntimeContext rctxt, boolean defaultIsSession)
public JspCompilationContext(String tagfile, javax.servlet.jsp.tagext.TagInfo tagInfo, Options options, javax.servlet.ServletContext context, JspRuntimeContext rctxt, boolean defaultIsSession, URL tagFileJarUrl)
public ClassLoader getClassLoader()
public OutputStream getOutputStream(String fileName) throws IOException
fileName
- The path to the file to write toIOException
- If an error occurrs creating the output stream.public InputStream getInputStream(String fileName) throws FileNotFoundException, IOException
fileName
- The path to the file to read fromFileNotFoundException
- If the file cannot be foundIOException
- If an error occurrs creating the intput stream.public boolean delete(String fileName)
fileName
- The path to the file to remove.true
if the file has been removed.public boolean rename(String oldFileName, String newFileName)
true
if the file has been renamedpublic String getOutputDir()
public Compiler getCompiler()
public String resolveRelativeUri(String uri)
public InputStream getResourceAsStream(String res)
public URL getResource(String res) throws MalformedURLException
MalformedURLException
public String getRealPath(String path)
public URL getTagFileJarUrl(String tagFile)
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()
protected String getDerivedPackageName()
public void setServletPackageName(String servletPackageName)
public String getServletJavaFileName()
public Options getOptions()
public javax.servlet.ServletContext getServletContext()
public JspRuntimeContext getRuntimeContext()
public String getJavaPath()
public String getClassFileName()
public String getContentType()
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 JasperException compile()
public Class<?> load() throws JasperException
JasperException
public void checkOutputDir()
Copyright © 2007–2014 The Apache Software Foundation. All rights reserved.