关于org.springframework.boot不存在的解决方法

  1. 检查jar包版本,可能版本选的高了,换个低点的试试
    `
    org.springframework.boot
    spring-boot-starter-parent
    2.1.1.RELEASE


    版本比较低的,稳妥一点

  2. File》Settings》Bulid,Excution,Deploment》Bulid Tools》Maven》
    关于org.springframework.boot不存在的解决方法_第1张图片

  3. 还没用就右击项目选择Maven》reImport

  4. 在重新点击在这里插入图片描述

  5. 将你pom.xml文件的依赖注释掉,启动maven的clean,清理完成之后将注释ctrl+Z掉就OK,再启动试试;

  6. 在这献上我springClould的pom.xml文件


4.0.0

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


com.zb
consumer
0.0.1-SNAPSHOT
consumer
Consumer


    1.8
    Greenwich.SR5



    
        org.springframework.cloud
        spring-cloud-starter-openfeign
    

    
        org.springframework.cloud
        spring-cloud-netflix-hystrix
    
    
        org.springframework.boot
        spring-boot-starter-thymeleaf
    
    
        org.springframework.boot
        spring-boot-starter-web
    
    
        org.springframework.cloud
        spring-cloud-starter-netflix-eureka-client
    
    
        org.springframework.cloud
        spring-cloud-starter-netflix-ribbon
    

    
        org.springframework.boot
        spring-boot-starter-test
        test
    



    
        
            org.springframework.cloud
            spring-cloud-dependencies
            ${spring-cloud.version}
            pom
            import
        
    



    
        
            org.springframework.boot
            spring-boot-maven-plugin
        
    

来之小白的总结

你可能感兴趣的:(Spring,java)