java [-classpath classpath]
  JSPC 
  -j jrun_root_dir
  -s server
  -a web_application_name
  [-webroot path_to_web_root]   [-vghn]
  [-d output_directory] 
  [-compiler "compiler_spec"] 
  JSP_pathclasspath - (Optional) Specifies the classpath to the java command. You can specify it either on the command line or by using the CLASSPATH environment variable. The following paths must be specified in the classpath:All JAR files in the JRun_rootdir/lib directory 
All JAR files in the directory JRun_rootdir/lib/ext directory 
Depending on your compiler, you may have to specify additional files shipped with your JDK 
Additional parameters are as follows:j - Specifies the JRun root directory.s - Specifies the server name.a - Specifies the Web application name.webroot - (Optional) Specifies the full path to the Web application’s root directory. This argument is required for Web applications for which the use-webserver-root property is set to true. You can optionally abbreviate this to -w.
v - (Optional) Specifies to display the name of each JSP file as the JSPC compiles it.g - (Optional) Specifies to display debug messages.h - (Optional) Specifies to display the JSPC compiler help message.n - (Optional) Specifies to compile only JSPs that are newer than the corresponding .class file.d - (Optional) Specifies where you want the JSPC compiler to write the output .class and .java files. By default, this directory is set to the current working directory. Typically, you specify the WEB-INF\jsp directory under the directory structure of a Web application. compiler - (Optional) Specifies a quoted string containing the compiler and compiler settings to use for the compile. If you omit this parameter, JRun compiles JSPs in-process using the Sun javac compiler. For example:java JSPC -compiler "javac -nowarn -classpath %c -d %d %f" ...
  or
java JSPC -compiler "jvc /cp:c %c /dest: %d %f" ...JSP_path - Specifies the physical path of the JSP on your file system relative to the Web application by the -a parameter. You can specify multiple files, separated by spaces. You can use wildcard symbols to specify multiple files. The directory specified by -a and the JSP_path are combined to specify the JSP compiled. For example, if -a is a Web application located in c:\myapps\store and the JSP that you want to compile is named is c:\myapps\store\my.jsp, the JSP_path for the page is my.jsp. You can include wildcard symbols in the JSP_path if you are compiling multiple JSPs.