springboot增加@EnableAsync注解,否则方法中的@Async注解没有生效。
@EnableFeignClients(basePackages = {"com.test", "com.test.order"}) @EnableAsync @EnableEurekaClient @SpringBootApplication public class MyApplication extends SpringBootServletInitializer {
}