FeignConfiguration.java 354 B

1234567891011121314
  1. package com.gyee.consumer.config;
  2. import com.gyee.consumer.fallback.GenreSetPushServiceFallbackFactory;
  3. import org.springframework.context.annotation.Bean;
  4. public class FeignConfiguration {
  5. @Bean
  6. public GenreSetPushServiceFallbackFactory eenreSetPushServiceFallbackFactory() {
  7. return new GenreSetPushServiceFallbackFactory();
  8. }
  9. }