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

前端 未结 7 2123
臣服心动
臣服心动 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:12

    I ran into the same problem when trying to add Spring security to the application. The problem was resolved by adding

    
        org.springframework
        spring-web
        3.2.2.RELEASE
    
    

提交回复
热议问题