wrapper.ignore_sequence_gaps

Compatibility :3.3.6
Editions :Professional EditionStandard EditionCommunity Edition
Platforms :WindowsMac OSXLinuxIBM AIXFreeBSDHP-UXSolarisIBM z/OSIBM z/Linux

WARNING

DO NOT modify any of these parameters unless you have read this property description. Incorrect settings can cause the Wrapper to fail to operate as expected.

This property controls whether or not the Wrapper should allow gaps in sequences of properties containing an "<n>" (numbering) component. Most users will want to set this property, however it is disabled by default to maintain compatibility with previous versions of the Wrapper.

The default value is "FALSE".

Example:
wrapper.ignore_sequence_gaps=FALSE

Disable (FALSE):

When gaps disabled (FALSE), the Wrapper will start looking for properties using incrementing integer values counting up from "1". In the following example, the first 2 properties (#1 and #2) will be included, but #4 will NOT because #3 has been commented out.

Configuration Property Example:
wrapper.java.classpath.1=../lib/jar1.jar
wrapper.java.classpath.2=../lib/jar2.jar
#wrapper.java.classpath.3=../lib/jar3.jar
wrapper.java.classpath.4=../lib/jar4.jar

Enable (TRUE):

When gaps enabled (TRUE), the Wrapper will skip over gaps in the sequence and included all numbered properties sorted by their number. This makes it possible comment out individual properties without having to renumber them all, and it also makes it possible to group properties by function.

Configuration Property Example:
# Application Jars:
wrapper.java.classpath.100=../lib/appjar1.jar
wrapper.java.classpath.101=../lib/appjar2.jar
#wrapper.java.classpath.102=../lib/appjar3.jar
wrapper.java.classpath.103=../lib/appjar4.jar

# Tool Jars
wrapper.java.classpath.200=../lib/tooljar1.jar
wrapper.java.classpath.201=../lib/tooljar2.jar

Reference: Affected Properties