在 JBoss AS7 的standlone.xml
文件中,我将my.dir
系统属性中的变量设置为
<system-properties>
<property name="my.dir" value="D:\\mylocation"
</system-properties>
现在我正在尝试使用此变量通过以下方式在standalone.xml中指定密钥库文件的位置
certificate-key-file="${my.dir}\cert\mycert.keystore"
但是,在启动 JBoss 时,我得到了IO exception
因为 JBoss 无法找到路径。如果我做错了什么,你能告诉我吗?