org/springframework/boot/autoconfigure/web/ServerPropertiesAutoConfiguration.class

遇到了,解决了,记录一下

这个问题是jar版本问题,ServerPropertiesAutoConfiguration,在springboot 2.x.x 以后移除了,当springboot>=2.x.x ,其他jar包加载 涉及到ServerPropertiesAutoConfiguration 就会报错了,比如我引用如下,就会报错,


    org.springframework.cloud
    spring-cloud-starter-feign
    1.4.7.RELEASE

替换成


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

就可以了,spring-cloud-starter-feign 中除去spring-cloud-starter-openfeign 外还有spring-boot-autoconfigure-processor 包

你可能感兴趣的:(春种秋收)