1

我正在尝试使用 Maven 程序集插件生成一个 jar 文件。除了我的 log4j.properties 文件外,一切都是正确的;当我运行 jar 文件时,控制台输出:

log4j:WARN 找不到记录器 (com.xxxxxxxxxx.web.processengine.Main) 的附加程序。log4j:WARN 请正确初始化 log4j 系统。log4j:WARN 有关详细信息,请参阅 http://logging.apache.org/log4j/1.2/faq.html#noconfig

在 Eclipse 中运行良好;所以我认为是某种类型的编译问题;这是我的程序集插件 pom 配置:

<plugin>
        <artifactId>maven-assembly-plugin</artifactId>

        <configuration>
            <descriptorRefs>
                <descriptorRef>jar-with-dependencies</descriptorRef>
            </descriptorRefs>  
            <archive>
                <manifest>
                    <mainClass>com.xxxxxxxxx.web.processengine.Main</mainClass>
                </manifest>
            </archive>
        </configuration>

        <executions>
            <execution>
                <phase>package</phase>
                <goals>
                    <goal>single</goal>
                </goals>
            </execution>
      </executions>
    </plugin>

我感谢任何帮助,谢谢。

4

1 回答 1

1

尝试将 log4j.properties 文件放在 src/main/resources 文件夹中

于 2013-07-04T14:32:53.467 回答