独自のモジュール dir と追加のカスタム modules.custom を同時に使用するように JBoss AS7 をセットアップすることは可能ですか? もしそうなら、カスタム エントリとデフォルト エントリを混在させる必要はありません。
質問する
2480 次
1 に答える
4
you can do that by setting JBOSS_MODULEPATH env variable to include more than just your folder. For instance configuration like this
set JBOSS_MODULEPATH=%JBOSS_HOME%/modules;/path/to/my/modules
it would add /path/to/my/modules to path of modules. But just make sure you still keep default folder in your module path.
for more you can take a look at standalone.sh/bat and look how this variable is used.
(if you are on mac or unix, use export and colons)
export JBOSS_MODULPATH=$JBOSS_HOME/modules:/path/to/my/modules
于 2013-06-26T10:26:47.557 に答える