最初,我在项目的 pom.xml 文件中有 asm 版本 3.2 的 maven 依赖项。我使用以下依赖项将其更新到版本 4.1
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>4.1</version>
<scope>compile</scope>
</dependency>
但现在我的项目在 WEB-INF/lib 中有两个 jar 文件 - asm 3.2 和 asm 4.1。我需要 asm 4.1 的一些功能,但由于两个 jar 都可用,因此使用了 asm 3.2 代码,因此我无法使用 asm 4.1 功能。
对此问题的任何帮助表示赞赏。