① java.lang.NoSuchMethodError:org.springframework.boot.builder.SpringApplicationBuilder.
原因:版本问题
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
版本过高,更换较低版本
② com.netflix.hystrix.contrib.javanica.exception.FallbackDefinitionException:fallback method wasn't found
原因:指定的原因 备用方法 和 原方法 的参数类型,个数不同造成的。需要统一参数列表,
另外,返回值类型也需要一致。
③ **WARNING** :Your ApplicationContext is unlikely to start due to a @ComponentScan of the default package :Application startup failed