Class Conflict when starting up Java project: ClassMetadataReadingVisitor has interface org.springframework.asm.ClassVisitor as super class

前端 未结 7 2122
臣服心动
臣服心动 2020-11-30 06:29

I am developing a Java web project using the latest Spring framework version (3.2.2-RELEASE), but now I have a problem when the project is started up. The detail error is

7条回答
  •  迷失自我
    2020-11-30 07:30

    If you are using a spring version > 3.2.0, you no longer need to include specifically spring-asm since it has been included in spring-core.

    Remove spring-asm from your build definition and ensure that spring-core is there.

    See http://docs.spring.io/spring-framework/docs/3.2.16.RELEASE/spring-framework-reference/htmlsingle/#migration-3.2-inline-asm

提交回复
热议问题