public class JspCompilationContext extends Object
Constructor and Description |
---|
JspCompilationContext(String jspUri,
Options options,
ServletContext context,
JspServletWrapper jsw,
JspRuntimeContext rctxt) |
JspCompilationContext(String tagfile,
TagInfo tagInfo,
Options options,
ServletContext context,
JspServletWrapper jsw,
JspRuntimeContext rctxt,
Jar tagJar) |
Modifier and Type | Method and Description |
---|---|
protected static String |
canonicalURI(String s) |
void |
checkOutputDir() |
void |
clearJspLoader() |
void |
compile() |
Compiler |
createCompiler()
Create a "Compiler" object based on some init param data.
|
protected Compiler |
createCompiler(String className) |
protected void |
createOutputDir() |
String |
getClassFileName() |
ClassLoader |
getClassLoader()
What class loader to use for loading classes while compiling
this JSP?
|
String |
getClassPath() |
Compiler |
getCompiler() |
protected String |
getDerivedPackageName() |
String |
getFQCN() |
String |
getJavaPath() |
String |
getJspFile()
Path of the JSP URI.
|
ClassLoader |
getJspLoader() |
Long |
getLastModified(String resource) |
Long |
getLastModified(String resource,
Jar tagJar) |
Options |
getOptions() |
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<String> |
getResourcePaths(String path) |
JspRuntimeContext |
getRuntimeContext() |
String |
getServletClassName()
Just the class name (does not include package name) of the
generated class.
|
ServletContext |
getServletContext() |
String |
getServletJavaFileName() |
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.
|
Jar |
getTagFileJar()
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.
|
TagInfo |
getTagInfo() |
TldResourcePath |
getTldResourcePath(String uri)
Gets the 'location' of the TLD associated with the given taglib 'uri'.
|
ServletWriter |
getWriter() |
void |
incrementRemoved() |
protected static boolean |
isPathSeparator(char c) |
boolean |
isPrototypeMode() |
boolean |
isRemoved() |
boolean |
isTagFile() |
boolean |
keepGenerated() |
Class<?> |
load() |
protected boolean |
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(ClassLoader loader) |
void |
setClassPath(String classPath)
The classpath that is passed off to the Java compiler.
|
void |
setPrototypeMode(boolean pm) |
void |
setServletClassName(String className) |
void |
setServletPackageName(String servletPackageName)
The package name into which the servlet class is generated.
|
void |
setTagFileJar(Jar tagJar) |
void |
setTagInfo(TagInfo tagi) |
void |
setWriter(ServletWriter writer) |
public JspCompilationContext(String jspUri, Options options, ServletContext context, JspServletWrapper jsw, JspRuntimeContext rctxt)
public JspCompilationContext(String tagfile, TagInfo tagInfo, Options options, ServletContext context, JspServletWrapper jsw, JspRuntimeContext rctxt, Jar tagJar)
public String getClassPath()
public void setClassPath(String classPath)
classPath
- The class path to usepublic ClassLoader getClassLoader()
public void setClassLoader(ClassLoader loader)
public ClassLoader getJspLoader()
public void clearJspLoader()
public String getOutputDir()
public Compiler createCompiler()
public Compiler getCompiler()
public String resolveRelativeUri(String uri)
uri
- The relative URIpublic InputStream getResourceAsStream(String res)
res
- the resource to look forpublic URL getResource(String res) throws MalformedURLException
MalformedURLException
public String getRealPath(String path)
path
- The webapp pathpublic Jar getTagFileJar()
public void setTagFileJar(Jar tagJar)
public String getServletClassName()
public void setServletClassName(String className)
public String getJspFile()
public boolean isTagFile()
public TagInfo getTagInfo()
public void setTagInfo(TagInfo tagi)
public boolean isPrototypeMode()
true
if we are compiling a tag file
in prototype mode.
ie we only generate codes with class for the tag handler with empty
method bodies.public void setPrototypeMode(boolean pm)
public String getServletPackageName()
protected String getDerivedPackageName()
public void setServletPackageName(String servletPackageName)
servletPackageName
- The package name to usepublic String getServletJavaFileName()
public Options getOptions()
public ServletContext getServletContext()
public JspRuntimeContext getRuntimeContext()
public String getJavaPath()
public String getClassFileName()
public ServletWriter getWriter()
public void setWriter(ServletWriter writer)
public TldResourcePath getTldResourcePath(String uri)
uri
- The taglib URIpublic boolean keepGenerated()
true
if generated code is kept.public void incrementRemoved()
public boolean isRemoved()
public void compile() throws JasperException, FileNotFoundException
JasperException
FileNotFoundException
public Class<?> load() throws JasperException
JasperException
public String getFQCN()
public void checkOutputDir()
protected boolean makeOutputDir()
protected void createOutputDir()
protected static final boolean isPathSeparator(char c)
Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.