org.apache.tools.ant.taskdefs.optional.jsp

Class WLJspc

Implemented Interfaces:
SelectorContainer

public class WLJspc
extends MatchingTask

Precompiles JSP's using WebLogic's JSP compiler (weblogic.jspc). Tested only on Weblogic 4.5.1 - NT4.0 and Solaris 5.7 required attributes src : root of source tree for JSP, ie, the document root for your weblogic server dest : root of destination directory, what you have set as WorkingDir in the weblogic properties package : start package name under which your JSP's would be compiled other attributes classpath A classpath should be set which contains the weblogic classes as well as all application classes referenced by the JSP. The system classpath is also appended when the jspc is called, so you may choose to put everything in the classpath while calling Ant. However, since presumably the JSP's will reference classes being build by Ant, it would be better to explicitly add the classpath in the task The task checks timestamps on the JSP's and the generated classes, and compiles only those files that have changed. It follows the weblogic naming convention of putting classes in _dirName/_fileName.class for dirname/fileName.jsp Limitation: It compiles the files thru the Classic compiler only. Limitation: Since it is my experience that weblogic jspc throws out of memory error on being given too many files at one go, it is called multiple times with one jsp file each.
 example
 <target name="jspcompile" depends="compile">
   <wljspc src="c:\\weblogic\\myserver\\public_html"
           dest="c:\\weblogic\\myserver\\serverclasses" package="myapp.jsp">
   <classpath>
          <pathelement location="${weblogic.classpath}" />
           <pathelement path="${compile.dest}" />
      </classpath>

   </wljspc>
 </target>
 

Field Summary

Fields inherited from class org.apache.tools.ant.taskdefs.MatchingTask

fileset

Fields inherited from class org.apache.tools.ant.Task

description, location, target, taskName, taskType, wrapper

Fields inherited from class org.apache.tools.ant.ProjectComponent

project

Method Summary

Path
createClasspath()
Maybe creates a nested classpath element.
void
execute()
Called by the project to let the task do its work.
protected String
replaceString(String inpString, String escapeChars, String replaceChars)
protected void
scanDir(files[] )
void
setClasspath(Path classpath)
Set the classpath to be used for this compilation.
void
setDest(File dirName)
Set the directory containing the source jsp's
void
setPackage(String packageName)
Set the package under which the compiled classes go
void
setSrc(File dirName)
Set the directory containing the source jsp's

Methods inherited from class org.apache.tools.ant.taskdefs.MatchingTask

XsetIgnore, XsetItems, 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

Methods inherited from class org.apache.tools.ant.Task

execute, getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, maybeConfigure, perform, reconfigure, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType

Methods inherited from class org.apache.tools.ant.ProjectComponent

getProject, log, log, setProject

Method Details

createClasspath

public Path createClasspath()
Maybe creates a nested classpath element.

execute

public void execute()
            throws BuildException
Called by the project to let the task do its work. This method may be called more than once, if the task is invoked more than once. For example, if target1 and target2 both depend on target3, then running "ant target1 target2" will run all tasks in target3 twice.
Overrides:
execute in interface Task
Throws:
BuildException - if something goes wrong with the build

replaceString

protected String replaceString(String inpString,
                               String escapeChars,
                               String replaceChars)

scanDir

protected void scanDir(files[] )

setClasspath

public void setClasspath(Path classpath)
Set the classpath to be used for this compilation.

setDest

public void setDest(File dirName)
Set the directory containing the source jsp's
Parameters:
dirName - the directory containg the source jsp's

setPackage

public void setPackage(String packageName)
Set the package under which the compiled classes go
Parameters:
packageName - the package name for the clases

setSrc

public void setSrc(File dirName)
Set the directory containing the source jsp's
Parameters:
dirName - the directory containg the source jsp's

Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.