Maven Appassembler插件 - stdout和/或stderr重定向

时间:2013-01-18 22:10:42

标签: java bash shell maven appassembler

我正在将一个java项目迁移到Maven中,我们正在使用Appassembler maven插件(版本1.3)来生成shell启动脚本。我的问题是如何重定向stdout和/或java程序的输出?这个Appassembler的pom.xml配置

        <program>
          <mainClass>com.mycompany.app.App</mainClass>
          <commandLineArguments>
            <commandLineArgument>arg1</commandLineArgument>
            <commandLineArgument>arg2</commandLineArgument>
          </commandLineArguments>
          <name>app</name>
        </program>

产生

exec "$JAVACMD" $JAVA_OPTS \
  $EXTRA_JVM_ARGUMENTS \
  -classpath "$CLASSPATH" \
  -Dapp.name="app" \
  -Dapp.pid="$$" \
  -Dapp.repo="$REPO" \
  -Dbasedir="$BASEDIR" \
  com.mycompany.app.App \
  arg1 arg2 "$@"

参数占位符($ @)是启动脚本中最后生成的标记。

1 个答案:

答案 0 :(得分:3)

找到解决此问题的方法。幸运的是,参数占位符与生成的命令行参数位于同一行。所以这个pom.xml配置:

<commandLineArguments>
    <commandLineArgument>"$@"</commandLineArgument>
    <commandLineArgument>&gt;&gt;out.log</commandLineArgument>
    <commandLineArgument>2&gt;&amp;1</commandLineArgument>
    <commandLineArgument>#</commandLineArgument>
</commandLineArguments>

将生成脚本:

....
com.mycompany.app.App \
"$@" >>out.log 2>&1 # "$@"

Hash是bash中的注释,因此最后一个参数占位符将被忽略,这个hack将执行重定向作业。