当前位置: 代码迷 >> Ruby/Rails >> MAVEN Error: jar包重复会出现莫名其妙的异常
  详细解决方案

MAVEN Error: jar包重复会出现莫名其妙的异常

热度:378   发布时间:2016-04-29 02:12:46.0
MAVEN Error: jar包重复会出现莫名其妙的错误

Myeclipse2015+Maven3时同一个项目在不同主机的环境表现不同,有时不会报错,有时出现奇怪的错误,错误信息如下:

1. Exception starting filter OpenSessionInViewFilter java.lang.NoSuchFieldError: MANUAL

2. java.lang.NoSuchFieldError: MANUAL

3. 无法找到某个用户定义的类;


后来发现pom.xml文件中有重复的jar包声明:


<!-- hibernate部分 -->

<!--重复部分 <dependency>
<groupId>hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.0.5</version>
</dependency>
-->


<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>


<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
<classifier>sources</classifier>
</dependency>


<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-search-orm</artifactId>
<version>5.2.0.Final</version>

</dependency>


将重复部分注释掉及运行正常。

  相关解决方案