fs在wildfly的配置中代表什么<fs-exploded>?

What does fs stands for in the configuration of wildfly <fs-exploded>?

我有兴趣。 exploded war的JBoss配置中的缩写fs是什么意思?

我知道这个配置代表什么。了解 fs 的含义对我来说很有趣。

<deployments>
    <deployment name="foo" runtime-name="baz.war">
        <fs-exploded path="D:\my\big\path\to\war"/>
    </deployment>
</deployments>

fsFileS系统的缩写。

勾选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>