代码之家  ›  专栏  ›  技术社区  ›  Michal Sipek

通过JBoss CLI使用多属性参数

  •  2
  • Michal Sipek  · 技术社区  · 7 年前

    $JBOSS_HOME/bin/jboss-cli.sh --connect --user=admin --password=admin --properties=init.properties --properties=jvm.properties --file=init.cli
    

    $JBOSS_HOME/bin/jboss-cli.sh --connect --user=admin --password=admin --properties=init.properties jvm.properties --file=init.cli
    
    1 回复  |  直到 7 年前
        1
  •  4
  •   hradecek    7 年前

    是的,你可以!你在第一个例子中实际上是对的。


    下面是一个不实用的例子:

    你好属性

    hello=Hello from the
    

    world='Second' property file
    

    回响cli

    set hello=${hello}
    set world=${world}
    echo $hello $world
    

    $ $JBOSS_HOME/bin/jboss-cli.sh --connect --properties=hello.properties --properties=world.properties --file=echo.cli
    Hello from the 'Second' property file