ClassNotFoundException: org.springframework.beans.factory.ObjectProvider

SpringCloud 项目启动报错
两种解决方案:
一、修改 SpringBoot 版本

    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.13.BUILD-SNAPSHOT
         
    

改为

    
        org.springframework.boot
        spring-boot-starter-parent
        1.3.3.RELEASE
         
    

二、修改版本管理器

    
        
            
                org.springframework.cloud
                spring-cloud-starter-parent
                Brixton.RELEASE
                pom
                import
            
        
    

改为

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies 
                Brixton.SR4 
                pom
                import
            
        
    

你可能感兴趣的:(ClassNotFoundException: org.springframework.beans.factory.ObjectProvider)