public class JspC extends MatchingTask
This task takes the given jsp files and compiles them into java files. It is then up to the user to compile the java files into classes.
The task requires the srcdir and destdir attributes to be set. This Task is a MatchingTask, so the files to be compiled can be specified using includes/excludes attributes or nested include/exclude elements. Optional attributes are verbose (set the verbosity level passed to jasper), package (name of the destination package for generated java classes and classpath (the classpath to use when running the jsp compiler).
This task supports the nested elements classpath (A Path) and classpathref (A Reference) which can be used in preference to the attribute classpath, if the jsp compiler is not already in the ant classpath.
<jspc srcdir="${basedir}/src/war" destdir="${basedir}/gensrc" package="com.i3sp.jsp" verbose="9"> <include name="**\/*.jsp" /> </jspc>
Large Amount of cutting and pasting from the Javac task...
Modifier and Type | Class and Description |
---|---|
static class |
JspC.WebAppParameter
static inner class used as a parameter element
|
Modifier and Type | Field and Description |
---|---|
protected Vector |
compileList |
protected boolean |
failOnError
flag to control action on execution trouble
|
protected JspC.WebAppParameter |
webApp
web apps
|
fileset
Constructor and Description |
---|
JspC() |
Modifier and Type | Method and Description |
---|---|
void |
addWebApp(JspC.WebAppParameter webappParam)
Adds a single webapp.
|
Path |
createClasspath()
Adds a path to the classpath.
|
Path |
createCompilerclasspath()
Support nested compiler classpath, used to locate compiler adapter
|
void |
deleteEmptyJavaFiles()
delete any java output files that are empty
this is to get around a little defect in jasper: when it
fails, it leaves incomplete files around.
|
void |
execute()
execute by building up a list of files that
have changed and hand them off to a jsp compiler
|
Path |
getClasspath()
Get the classpath.
|
Vector |
getCompileList()
get the list of files to compile
|
Path |
getCompilerclasspath()
get the classpath used to find the compiler adapter
|
File |
getDestdir()
Get the destination directory.
|
boolean |
getFailonerror()
Gets the failonerror flag.
|
String |
getIeplugin()
Get the IE CLASSID value.
|
String |
getPackage()
Get the name of the package.
|
Path |
getSrcDir()
Get the source dir.
|
File |
getUribase()
Get the uri base value.
|
File |
getUriroot()
Get the uri root value.
|
int |
getVerbose()
Get the verbose level.
|
JspC.WebAppParameter |
getWebApp()
Get the web app.
|
File |
getWebinc()
Get the webinc attribute.
|
File |
getWebxml()
Filename for web.xml.
|
boolean |
isMapped()
If true, generate separate write() calls for each HTML line
in the JSP.
|
protected File |
mapToJavaFile(JspMangler mangler,
File srcFile,
File srcDir,
File dest)
get a filename from our jsp file.
|
protected void |
resetFileLists()
Clear the list of files to be compiled and copied..
|
protected void |
scanDir(File srcDir,
File dest,
JspMangler mangler,
String[] files)
Scans the directory looking for source files to be compiled.
|
void |
setClasspath(Path cp)
Set the classpath to be used for this compilation.
|
void |
setClasspathRef(Reference r)
Adds a reference to a classpath defined elsewhere
|
void |
setCompiler(String compiler)
Class name of a JSP compiler adapter.
|
void |
setCompilerclasspath(Path cp)
Set the classpath to be used to find this compiler adapter
|
void |
setDestdir(File destDir)
Set the destination directory into which the JSP source
files should be compiled.
|
void |
setFailonerror(boolean fail)
Whether or not the build should halt if compilation fails.
|
void |
setIeplugin(String iepluginid)
Java Plugin CLASSID for Internet Explorer
|
void |
setMapped(boolean mapped)
If true, generate separate write() calls for each HTML line
in the JSP.
|
void |
setPackage(String pkg)
Set the name of the package the compiled jsp files should be in.
|
void |
setSrcDir(Path srcDir)
Set the path for source JSP files.
|
void |
setUribase(File uribase)
The URI context of relative URI references in the JSP pages.
|
void |
setUriroot(File uriroot)
The root directory that uri files should be resolved
against.
|
void |
setVerbose(int i)
Set the verbose level of the compiler
|
void |
setWebinc(File webinc)
output filename for the fraction of web.xml that lists
servlets.
|
void |
setWebxml(File webxml)
Filename for web.xml.
|
add, addAnd, addContains, addContainsRegexp, addCustom, addDate, addDepend, addDepth, addDifferent, addFilename, addMajority, addModified, addNone, addNot, addOr, addPresent, addSelector, addSize, addType, appendSelector, createExclude, createExcludesFile, createInclude, createIncludesFile, createPatternSet, getDirectoryScanner, getImplicitFileSet, getSelectors, hasSelectors, selectorCount, selectorElements, setCaseSensitive, setDefaultexcludes, setExcludes, setExcludesfile, setFollowSymlinks, setIncludes, setIncludesfile, setProject, XsetIgnore, XsetItems
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
clone, getDescription, getLocation, getProject, setDescription, setLocation
protected Vector compileList
protected boolean failOnError
protected JspC.WebAppParameter webApp
public void addWebApp(JspC.WebAppParameter webappParam) throws BuildException
webappParam
- add a web app parameterBuildException
- if more than one webapp is specified.public Path createClasspath()
public Path createCompilerclasspath()
public void deleteEmptyJavaFiles()
public void execute() throws BuildException
execute
in class Task
BuildException
- on error.public Path getClasspath()
public Vector getCompileList()
public Path getCompilerclasspath()
public File getDestdir()
public boolean getFailonerror()
public String getIeplugin()
public String getPackage()
public Path getSrcDir()
public File getUribase()
public File getUriroot()
public int getVerbose()
public JspC.WebAppParameter getWebApp()
public File getWebinc()
public File getWebxml()
public boolean isMapped()
protected File mapToJavaFile(JspMangler mangler, File srcFile, File srcDir, File dest)
mangler
- the jsp filename manager.srcFile
- the source file.srcDir
- the source directory.dest
- the destination directory.protected void resetFileLists()
protected void scanDir(File srcDir, File dest, JspMangler mangler, String[] files)
srcDir
- the source directory.dest
- the destination directory.mangler
- the jsp filename mangler.files
- the file names to mangle.public void setClasspath(Path cp)
cp
- the path to be used.public void setClasspathRef(Reference r)
r
- a reference to a classpath.public void setCompiler(String compiler)
compiler
- the compiler class name.public void setCompilerclasspath(Path cp)
cp
- the compiler classpath.public void setDestdir(File destDir)
destDir
- the destination directory.public void setFailonerror(boolean fail)
true
.fail
- a boolean
value.public void setIeplugin(String iepluginid)
iepluginid
- the id to use.public void setMapped(boolean mapped)
mapped
- a boolean
value.public void setPackage(String pkg)
pkg
- the name of the package.public void setSrcDir(Path srcDir)
srcDir
- the source path.public void setUribase(File uribase)
uribase
- The new Uribase valuepublic void setUriroot(File uriroot)
uriroot
- The new Uribase valuepublic void setVerbose(int i)
i
- the verbose level to use.public void setWebinc(File webinc)
webinc
- The new Webinc valuepublic void setWebxml(File webxml)
webxml
- The new Webxml value