I am interested. What does the abbreviation fs
mean in the JBoss configuration of exploded war?
I know what this configuration stands for. It is interesting for me to understand what the fs
means.
<deployments>
<deployment name="foo" runtime-name="baz.war">
<fs-exploded path="D:\my\big\path\to\war"/>
</deployment>
</deployments>
fs
is the abbreviation for FileSystem.
Check wildfly's xsd
<xs:complexType name="fs-explodedType"> <xs:annotation> <xs:documentation>Exploded content found on the filesystem</xs:documentation> </xs:annotation> <xs:complexContent> <xs:extension base="fs-baseType"/> </xs:complexContent> </xs:complexType>