将log4j添加到maven项目

时间:2015-01-15 10:39:28

标签: maven log4j

我收到无法发布到服务器。将log4j依赖项添加到pom.xml时的java.lang.IndexOutOfBoundsException异常 这是依赖

<dependency>
    <groupId>log4j</groupId>
    <artifactId>log4j</artifactId>
    <version>1.2.17</version>
</dependency>

当我从pom.xml中删除依赖项时,一切正常。你能帮我找到问题吗?

1 个答案:

答案 0 :(得分:0)

您的网络服务器有可能在其类路径中有一个log4j库。 他的依赖与你的依赖之间可能存在冲突。 例如,在weblogic中你可以这样做:

<wls:container-descriptor>
      <wls:prefer-web-inf-classes>true</wls:prefer-web-inf-classes>
</wls:container-descriptor>