Use this panel to specify options to be used by the JavaServer Pages compiler.
This administrative console panel is a step in the application installation and update wizards. To view this panel, select Precompile JavaServer Pages files on the Select Installation options panel. Thus, to view this panel, click Applications > Install New Application > application_path > Show me all installation options and parameters > Next > Next > Precompile JavaServer Pages files > Next > Step: Provide options to compile JSPs.
You can specify the JSP compiler options on this panel only when installing or updating an application that contains Web modules. After the application is installed, edit the JSP engine configuration parameters of a Web module's WEB-INF/ibm-web-ext.xmi file to change its JSP compiler options.
Specifies the name of a module within the application.
Location of the module relative to the root of the application (EAR file).
Specifies a temporary class path for the JSP compiler to use when compiling JSP files during application installation. This class path is not saved when the application installation is complete and is not used when the application is running. This class path is used only to identify resources outside of the application which are necessary for JSP compilation and which will be identified by other means (such as shared libraries) after the application is installed. In network deployment configurations, this class path is specific to the deployment manager machine.
To specify that multiple Web modules use the same class path:
Specifies whether the JSP engine generates and loads JSP classes using full package names.
When full package names are used, precompiled JSP class files can be configured as servlets in the web.xml file, without having to use the jsp-file attribute. When full package names are not used, all JSP classes are generated in the same package, which has the benefit of smaller file-system paths.
When the options useFullPackageNames and disableJspRuntimeCompilation are both true, a single class loader is used to load all JSP classes, even if the JSP files are not configured as servlets in the web.xml file.
This option is the same as the useFullPackageNames JSP engine parameter.
Source level at which the Java compiler compiles JSP Java sources. Valid values are 13, 14, and 15. The default value is 13, which specifies source level 1.3.
Specifies whether a JSP file should never be translated or compiled at run time, even when a .class file does not exist.
When this option is set to true, the JSP engine does not translate and compile JSP files at run time; the JSP engine loads only precompiled class files. JSP source files do not need to be present in order to load class files. You can install an application without JSP source, but the application must have precompiled class files.
For a single Web application class loader to load all JSP classes, this compiler option and the Use full package names option both must be set to true.
This option is the same as the disableJspRuntimeCompilation JSP engine parameter.